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