結果

問題 No.338 アンケート機能
ユーザー nebukuro09nebukuro09
提出日時 2016-11-01 11:40:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 00:41:33
合計ジャッジ時間 30,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
6,816 KB
testcase_01 AC 887 ms
6,816 KB
testcase_02 AC 879 ms
6,820 KB
testcase_03 AC 882 ms
6,816 KB
testcase_04 AC 889 ms
6,820 KB
testcase_05 AC 887 ms
6,820 KB
testcase_06 AC 894 ms
6,816 KB
testcase_07 AC 899 ms
6,816 KB
testcase_08 AC 873 ms
6,820 KB
testcase_09 AC 898 ms
6,816 KB
testcase_10 AC 883 ms
6,820 KB
testcase_11 AC 881 ms
6,820 KB
testcase_12 AC 880 ms
6,816 KB
testcase_13 AC 890 ms
6,820 KB
testcase_14 AC 909 ms
6,816 KB
testcase_15 AC 907 ms
6,816 KB
testcase_16 AC 877 ms
6,816 KB
testcase_17 AC 892 ms
6,820 KB
testcase_18 AC 906 ms
6,816 KB
testcase_19 AC 875 ms
6,824 KB
testcase_20 AC 882 ms
6,816 KB
testcase_21 AC 909 ms
6,820 KB
testcase_22 AC 888 ms
6,816 KB
testcase_23 AC 894 ms
6,816 KB
testcase_24 AC 928 ms
6,816 KB
testcase_25 AC 908 ms
6,816 KB
testcase_26 AC 890 ms
6,816 KB
testcase_27 AC 889 ms
6,820 KB
testcase_28 AC 888 ms
6,820 KB
testcase_29 AC 950 ms
6,816 KB
testcase_30 AC 901 ms
6,816 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