일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- sql injection
- burp suite
- blind sql injection
- xss game 풀이
- python
- 배열
- 자바스크립트
- window
- document
- lord of sql injection
- 객체
- suninatas 풀이
- htmlspecialchars
- xss game
- 파이썬
- 백준 파이썬
- 김성엽 대표님
- object
- element 조회
- github
- 함수
- jQuery
- 포인터
- 메소드
- 조건문
- Pwndbg
- property
- IF문
- 사칙연산
- 백준 알고리즘
Archives
- Today
- Total
목록백준 알고리즘 (34)
power-girl0-0
[ 15552 ] 빠른 A+B
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
[ 8393 ] 합
n = int(input()) result = 0 for i in range(1, n+1): result += i print(result)
백준 알고리즘/python
2021. 2. 28. 05:07
[ 10950 ] A + B - 3
t = int(input()) for i in range(t): a,b = map(int, input().split()) print(a+b)
백준 알고리즘/python
2021. 2. 28. 04:49
[ 2739 ] 구구단
n = int(input()) for i in range(1,10): print("%d * %d = %d"%(n,i,n*i))
백준 알고리즘/python
2021. 2. 28. 04:47
[ 14681 ] 사분면 고르기
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
[ 2753 ] 윤년
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