일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 조건문
- xss game
- 객체
- document
- 메소드
- 자바스크립트
- 김성엽 대표님
- xss game 풀이
- blind sql injection
- htmlspecialchars
- jQuery
- 백준 알고리즘
- window
- github
- lord of sql injection
- suninatas 풀이
- 백준 파이썬
- Pwndbg
- 배열
- python
- 함수
- 포인터
- property
- 사칙연산
- element 조회
- 파이썬
- burp suite
- object
- sql injection
- IF문
Archives
- Today
- Total
목록백준 파이썬 (9)
power-girl0-0
[ 15596 ] 정수 N개의 합
def solve(a): sum = 0 for i in a : sum += i return sum
언어/Python
2021. 3. 2. 23:52
[ 1110 ] 더하기 사이클
n = int(input()) total = n cnt = 0 while(True): a= total//10 b= total%10 c=(a+b)%10 total = (b*10)+c cnt += 1 if(n == total): print(cnt) break
백준 알고리즘/python
2021. 3. 1. 14:00
[ 10871 ] X보다 작은 수
n, x =map(int,input().split()) num = list(map(int, input().split())) for i in range(n): if num[i]
백준 알고리즘/python
2021. 2. 28. 16:50
[ 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
[ 14681 ] 사분면 고르기
x = int(input()) y = int(input()) if(x>=0 and y>=0): print(1) elif(x=0): print(2) elif(x
백준 알고리즘/python
2021. 2. 28. 02:55
[ 9498 ] 시험 성적
grade = int(input()) if(grade>100): print("점수를 올바르게 입력해주세요.") elif(grade>= 90): print("A") elif(grade>=80): print("B") elif(grade>=70): print("C") elif(grade>=60): print("D") else: print("F")
백준 알고리즘/python
2021. 2. 28. 02:27