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