結果

問題 No.338 アンケート機能
ユーザー flippergoflippergo
提出日時 2024-12-28 09:56:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-12-28 09:56:14
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
66,688 KB
testcase_01 AC 83 ms
67,968 KB
testcase_02 AC 78 ms
66,560 KB
testcase_03 AC 82 ms
68,892 KB
testcase_04 AC 73 ms
64,256 KB
testcase_05 AC 83 ms
67,072 KB
testcase_06 AC 98 ms
64,768 KB
testcase_07 AC 83 ms
67,840 KB
testcase_08 AC 86 ms
66,560 KB
testcase_09 AC 86 ms
68,224 KB
testcase_10 AC 81 ms
67,712 KB
testcase_11 AC 78 ms
65,920 KB
testcase_12 AC 80 ms
67,840 KB
testcase_13 AC 80 ms
65,408 KB
testcase_14 AC 79 ms
67,712 KB
testcase_15 AC 80 ms
67,968 KB
testcase_16 AC 82 ms
68,224 KB
testcase_17 AC 79 ms
67,840 KB
testcase_18 AC 96 ms
68,352 KB
testcase_19 AC 79 ms
67,584 KB
testcase_20 AC 83 ms
68,992 KB
testcase_21 AC 84 ms
67,328 KB
testcase_22 AC 84 ms
68,736 KB
testcase_23 AC 79 ms
67,968 KB
testcase_24 AC 84 ms
68,352 KB
testcase_25 AC 86 ms
70,144 KB
testcase_26 AC 85 ms
68,736 KB
testcase_27 AC 87 ms
69,120 KB
testcase_28 AC 81 ms
68,180 KB
testcase_29 AC 77 ms
65,792 KB
testcase_30 AC 95 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def round(x):
    x = int(10*x)
    if x%10>=5:
        x += 10
    return x//10
A,B = map(int,input().split())
ans = 5000
for a in range(1000+1):
    for b in range(1000+1):
        if a+b==0:continue
        if round(100*a/(a+b))==A and round(100*b/(a+b))==B:
            ans = min(ans,a+b)
print(ans)
0