結果

問題 No.338 アンケート機能
ユーザー nebukuro09nebukuro09
提出日時 2016-11-01 11:40:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 20:37:10
合計ジャッジ時間 29,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 914 ms
6,816 KB
testcase_01 AC 911 ms
6,940 KB
testcase_02 AC 879 ms
6,944 KB
testcase_03 AC 882 ms
6,940 KB
testcase_04 AC 894 ms
6,940 KB
testcase_05 AC 887 ms
6,944 KB
testcase_06 AC 898 ms
6,940 KB
testcase_07 AC 909 ms
6,940 KB
testcase_08 AC 892 ms
6,944 KB
testcase_09 AC 918 ms
6,940 KB
testcase_10 AC 880 ms
6,940 KB
testcase_11 AC 904 ms
6,944 KB
testcase_12 AC 893 ms
6,944 KB
testcase_13 AC 899 ms
6,940 KB
testcase_14 AC 909 ms
6,940 KB
testcase_15 AC 884 ms
6,940 KB
testcase_16 AC 944 ms
6,940 KB
testcase_17 AC 895 ms
6,944 KB
testcase_18 AC 915 ms
6,944 KB
testcase_19 AC 880 ms
6,940 KB
testcase_20 AC 909 ms
6,940 KB
testcase_21 AC 893 ms
6,944 KB
testcase_22 AC 903 ms
6,940 KB
testcase_23 AC 903 ms
6,940 KB
testcase_24 AC 893 ms
6,940 KB
testcase_25 AC 892 ms
6,940 KB
testcase_26 AC 885 ms
6,944 KB
testcase_27 AC 890 ms
6,944 KB
testcase_28 AC 876 ms
6,940 KB
testcase_29 AC 877 ms
6,940 KB
testcase_30 AC 899 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, raw_input().split())
ans = float('inf')
for a in xrange(1000):
    for b in xrange(1000):
        if a == b == 0:
            continue
        Aa = round(float((100*a))/(a+b))
        Bb = round(float((100*b))/(a+b))
        if Aa == A and Bb == B:
            ans = min(ans, a+b)
print ans
0