일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- Pwndbg
- IF문
- window
- 메소드
- xss game
- jQuery
- 백준 알고리즘
- property
- github
- 객체
- xss game 풀이
- sql injection
- object
- 자바스크립트
- 파이썬
- lord of sql injection
- burp suite
- 사칙연산
- document
- python
- element 조회
- htmlspecialchars
- 배열
- 백준 파이썬
- 함수
- 포인터
- 조건문
- 김성엽 대표님
- suninatas 풀이
- blind sql injection
Archives
- Today
- Total
목록분류 전체보기 (389)
power-girl0-0

n = int(input()) total = n cnt = 0 while(True): a= total//10 b= total%10 c=(a+b)%10 total = (b*10)+c cnt += 1 if(n == total): print(cnt) break
백준 알고리즘/python
2021. 3. 1. 14:00

import sys while(True): try: a,b = map(int,sys.stdin.readline().split()) except: break print(a+b)
백준 알고리즘/python
2021. 2. 28. 17:08

while(True): a,b = map(int,input().split()) if(a==0 and b==0): break else: print(a+b)
백준 알고리즘/python
2021. 2. 28. 17:01

n, x =map(int,input().split()) num = list(map(int, input().split())) for i in range(n): if num[i]
백준 알고리즘/python
2021. 2. 28. 16:50

n = int(input()) star='*' for i in range(1,n+1): print(" "*(n-i)+star * i)
백준 알고리즘/python
2021. 2. 28. 16:22

n = int(input()) star = "*" for i in range(n): print(star*(i+1))
백준 알고리즘/python
2021. 2. 28. 15:55

import sys t = int(input()) for i in range(t): a,b = map(int, sys.stdin.readline().split()) print("Case #%d: %d + %d = %d"%(i+1, a, b, a+b))
백준 알고리즘/python
2021. 2. 28. 15:44