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