728x90
반응형
https://www.acmicpc.net/problem/14717
Python
import sys
input = sys.stdin.readline
a, b = map(int, input().split())
total = 9*17
ans = 0
if a == b:
ans = total - (10-a)
else:
mypoint = (a+b) % 10
for i in range(1, 11):
for j in range(i+1, 11):
if mypoint > (i+j) % 10:
if i == a and j == b:
continue
elif i == a or j == a or i == b or j == b:
ans += 2
else:
ans += 4
print("%.3f" % (ans / total))
728x90
반응형
'Algorithm Problems' 카테고리의 다른 글
[백준][Python] 2751번 수 정렬하기2 - MergeSort (0) | 2021.07.29 |
---|---|
[백준][Python] 18258번 큐2, 10866번 덱 - 연결 리스트 (0) | 2021.07.29 |
[백준/Python] 숫자 정사각형 - BruteForce (0) | 2021.07.20 |
[백준] [Python] 2606번 바이러스 - BFS (0) | 2021.07.06 |
[백준] [Python] 11053번 가장 긴 증가하는 부분 수열 (LIS) - DP (0) | 2021.06.28 |