結果

問題 No.338 アンケート機能
ユーザー roarisroaris
提出日時 2019-08-09 15:52:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 7,904 KB
最終ジャッジ日時 2023-09-26 13:16:25
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
7,872 KB
testcase_01 AC 25 ms
7,876 KB
testcase_02 AC 24 ms
7,716 KB
testcase_03 AC 26 ms
7,784 KB
testcase_04 AC 27 ms
7,764 KB
testcase_05 AC 26 ms
7,876 KB
testcase_06 AC 24 ms
7,716 KB
testcase_07 AC 23 ms
7,872 KB
testcase_08 AC 26 ms
7,884 KB
testcase_09 AC 23 ms
7,876 KB
testcase_10 AC 23 ms
7,712 KB
testcase_11 AC 27 ms
7,712 KB
testcase_12 AC 25 ms
7,884 KB
testcase_13 AC 26 ms
7,832 KB
testcase_14 AC 24 ms
7,716 KB
testcase_15 AC 24 ms
7,828 KB
testcase_16 AC 26 ms
7,876 KB
testcase_17 AC 24 ms
7,748 KB
testcase_18 AC 26 ms
7,788 KB
testcase_19 AC 23 ms
7,852 KB
testcase_20 AC 24 ms
7,748 KB
testcase_21 AC 26 ms
7,712 KB
testcase_22 AC 26 ms
7,716 KB
testcase_23 AC 24 ms
7,764 KB
testcase_24 AC 25 ms
7,904 KB
testcase_25 AC 24 ms
7,792 KB
testcase_26 AC 25 ms
7,872 KB
testcase_27 AC 26 ms
7,764 KB
testcase_28 AC 25 ms
7,752 KB
testcase_29 AC 25 ms
7,784 KB
testcase_30 AC 25 ms
7,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
ans = 10 ** 18

for a in range(200):
    for b in range(200):
        if a == 0 and b == 0:
            continue
        
        if A - 0.5 <= 100*a / (a+b) < A + 0.5 and B - 0.5 <= 100*b / (a+b) < B + 0.5:
            ans = min(ans, a+b)

print(ans)
0