일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- htmlspecialchars
- element 조회
- document
- 배열
- 포인터
- IF문
- xss game
- xss game 풀이
- lord of sql injection
- burp suite
- 김성엽 대표님
- 파이썬
- 사칙연산
- Pwndbg
- jQuery
- 메소드
- window
- 객체
- 백준 알고리즘
- sql injection
- github
- 함수
- suninatas 풀이
- python
- object
- blind sql injection
- 자바스크립트
- 백준 파이썬
- 조건문
- property
Archives
- Today
- Total
목록분류 전체보기 (389)
power-girl0-0
[ 1110 ] 더하기 사이클
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
[ 10951 ] A+B - 4
import sys while(True): try: a,b = map(int,sys.stdin.readline().split()) except: break print(a+b)
백준 알고리즘/python
2021. 2. 28. 17:08
[ 10952 ] A+B - 5
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
[ 10871 ] X보다 작은 수
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
[ 2439 ] 별 찍기 - 2
n = int(input()) star='*' for i in range(1,n+1): print(" "*(n-i)+star * i)
백준 알고리즘/python
2021. 2. 28. 16:22
[ 2438 ] 별 찍기 - 1
n = int(input()) star = "*" for i in range(n): print(star*(i+1))
백준 알고리즘/python
2021. 2. 28. 15:55
[ 11022 ] A+B - 8
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