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

import sys t = int(input()) for i in range(t): a,b = map(int, sys.stdin.readline().rstrip().split()) print(a+b)
백준 알고리즘/python
2021. 2. 28. 14:29

n = int(input()) result = 0 for i in range(1, n+1): result += i print(result)
백준 알고리즘/python
2021. 2. 28. 05:07

t = int(input()) for i in range(t): a,b = map(int, input().split()) print(a+b)
백준 알고리즘/python
2021. 2. 28. 04:49

n = int(input()) for i in range(1,10): print("%d * %d = %d"%(n,i,n*i))
백준 알고리즘/python
2021. 2. 28. 04:47

x = int(input()) y = int(input()) if(x>=0 and y>=0): print(1) elif(x=0): print(2) elif(x
백준 알고리즘/python
2021. 2. 28. 02:55

a = int(input()) if(a%4==0 and (a%100!=0 or a%400==0)): print(1) else: print(0)
백준 알고리즘/python
2021. 2. 28. 02:38