結果

問題 No.338 アンケート機能
ユーザー Coki628Coki628
提出日時 2020-05-23 01:40:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,042 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 77,892 KB
最終ジャッジ日時 2024-10-06 04:53:10
合計ジャッジ時間 36,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,092 ms
72,988 KB
testcase_01 AC 1,155 ms
73,324 KB
testcase_02 AC 1,091 ms
73,520 KB
testcase_03 AC 1,093 ms
76,332 KB
testcase_04 AC 1,081 ms
72,452 KB
testcase_05 AC 1,112 ms
72,236 KB
testcase_06 AC 1,085 ms
72,204 KB
testcase_07 AC 1,136 ms
72,840 KB
testcase_08 AC 1,085 ms
73,416 KB
testcase_09 AC 1,092 ms
76,532 KB
testcase_10 AC 1,098 ms
76,296 KB
testcase_11 AC 1,080 ms
71,944 KB
testcase_12 AC 1,094 ms
76,516 KB
testcase_13 AC 1,075 ms
72,508 KB
testcase_14 AC 1,104 ms
76,544 KB
testcase_15 AC 1,103 ms
72,300 KB
testcase_16 AC 1,158 ms
74,968 KB
testcase_17 AC 1,116 ms
73,792 KB
testcase_18 AC 1,117 ms
76,220 KB
testcase_19 AC 1,064 ms
76,696 KB
testcase_20 RE -
testcase_21 AC 1,135 ms
71,956 KB
testcase_22 AC 1,072 ms
76,364 KB
testcase_23 AC 1,061 ms
76,680 KB
testcase_24 AC 1,065 ms
76,232 KB
testcase_25 AC 1,035 ms
76,888 KB
testcase_26 AC 1,054 ms
76,576 KB
testcase_27 AC 1,054 ms
76,344 KB
testcase_28 AC 1,052 ms
76,284 KB
testcase_29 AC 1,068 ms
73,312 KB
testcase_30 AC 1,089 ms
76,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10 ** 9)
INF = 10 ** 19
MOD = 10 ** 9 + 7
EPS = 10 ** -10

def round(x): return int((x*2+1) // 2)

A, B = MAP()
if A > B:
    A, B = B, A

ans = INF
for x in range(5000):
    for y in range(x, 5000):
        if x == y == 0:
            continue
        a = round(x / (x+y) * 100)
        b = round(y / (x+y) * 100)
        if a == A and b == B:
            ans = min(ans, x+y)
if ans == INF:
    raise Exception
else:
    print(ans)
0