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

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

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

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

a=int(input()) b=input() c=a*int(b[2]) d=a*int(b[1]) e=a*int(b[0]) print(c,d,e,a*int(b))
백준 알고리즘/python
2021. 2. 25. 02:24

print("|\\_/|") print("|q p| /}") print("( 0 )\"\"\"\\") print("|\"^\"` |") print("||_/=\\\\__|") print 참고 문자 문자 설명 \n 줄바꿈 \t 수평 탭(tab) \\ '\'(역슬래시) 문자 자체를 의미 \' 작은따옴표(') 문자 자체 \" 큰따옴표(") 문자 자체
백준 알고리즘/python
2021. 2. 24. 22:46