일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jQuery
- xss game
- 사칙연산
- 함수
- burp suite
- python
- 배열
- 메소드
- 김성엽 대표님
- 백준 알고리즘
- 객체
- htmlspecialchars
- element 조회
- suninatas 풀이
- property
- 포인터
- sql injection
- lord of sql injection
- window
- xss game 풀이
- 조건문
- object
- blind sql injection
- 자바스크립트
- 파이썬
- github
- Pwndbg
- document
- IF문
- 백준 파이썬
Archives
- Today
- Total
목록백준 알고리즘 (34)
power-girl0-0
[ 1330 ] 두 수 비교하기
a,b =map(int, input().split()) if(a>b): print(">") elif(a
백준 알고리즘/python
2021. 2. 28. 02:24
[ 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
[ 10430 ] 나머지
a,b,c = map(int, input().split()) print((a+b)%c) print(((a%c) + (b%c))%c) print((a*b)%c) print(((a%c) * (b%c))%c)
백준 알고리즘/python
2021. 2. 25. 02:07
[ 10869 ] 사칙연산
a,b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(int(a/b)) print(a%b)
백준 알고리즘/python
2021. 2. 25. 01:58
[ 10998 ] A x B
a,b = input().split() a=int(a) b=int(b) print(a*b)
백준 알고리즘/python
2021. 2. 25. 00:52