일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바스크립트
- suninatas 풀이
- window
- Pwndbg
- 메소드
- element 조회
- IF문
- python
- 김성엽 대표님
- burp suite
- property
- xss game 풀이
- 함수
- document
- 배열
- 포인터
- object
- 백준 파이썬
- htmlspecialchars
- 파이썬
- 백준 알고리즘
- blind sql injection
- sql injection
- xss game
- 조건문
- github
- jQuery
- lord of sql injection
- 객체
- 사칙연산
Archives
- Today
- Total
목록백준 알고리즘 (34)
power-girl0-0
[ 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