일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- burp suite
- lord of sql injection
- 파이썬
- sql injection
- jQuery
- 객체
- 김성엽 대표님
- python
- 포인터
- Pwndbg
- 함수
- 백준 알고리즘
- htmlspecialchars
- 메소드
- document
- property
- object
- window
- xss game
- IF문
- 사칙연산
- element 조회
- 배열
- github
- 백준 파이썬
- 자바스크립트
- 조건문
- xss game 풀이
- suninatas 풀이
- blind sql injection
- Today
- Total
목록백준 알고리즘 (34)
power-girl0-0
num = int(input()) for i in range(num): ox = list(str(input())) score = 0 cnt = 1 for j in ox: if(j == 'O'): score += cnt cnt += 1 else: cnt = 1 print(score)
import sys total = 0 num = int(input()) score = list(map(int, sys.stdin.readline().split())) max = max(score) for i in range(len(score)): result=score[i]/max*100 total += result print("%.2f"%(total/num))
arr = [] for i in range(10): num = int(input()) arr.append(num % 42) arr=set(arr) print(len(arr))
a= int(input()) b= int(input()) c= int(input()) num = str(a*b*c) for i in range(10): print(num.count(str(i)))
max = 0 cnt = 0 for i in range(9): cnt +=1 num = int(input()) if(max < num): max = num location = cnt print(max, location)
import sys n = int(input()) num= list(map(int, sys.stdin.readline().split())) max = num[0] min = num[0] for i in range(n): if maxnum[i]: min = num[i] print(min, max)
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