일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- element 조회
- 자바스크립트
- 함수
- 백준 파이썬
- htmlspecialchars
- document
- 조건문
- 파이썬
- Pwndbg
- burp suite
- lord of sql injection
- 사칙연산
- 메소드
- 김성엽 대표님
- suninatas 풀이
- jQuery
- 배열
- github
- IF문
- object
- blind sql injection
- window
- xss game
- 백준 알고리즘
- 객체
- python
- sql injection
- 포인터
- property
- xss game 풀이
Archives
- Today
- Total
목록백준 알고리즘 (6)
power-girl0-0
[ 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
[ 8393 ] 합
n = int(input()) result = 0 for i in range(1, n+1): result += i print(result)
백준 알고리즘/python
2021. 2. 28. 05:07
[ 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
[ 2588 ] 곱셈
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
[ 10172 ] 개
print("|\\_/|") print("|q p| /}") print("( 0 )\"\"\"\\") print("|\"^\"` |") print("||_/=\\\\__|") print 참고 문자 문자 설명 \n 줄바꿈 \t 수평 탭(tab) \\ '\'(역슬래시) 문자 자체를 의미 \' 작은따옴표(') 문자 자체 \" 큰따옴표(") 문자 자체
백준 알고리즘/python
2021. 2. 24. 22:46