結果

問題 No.338 アンケート機能
ユーザー ntudantuda
提出日時 2024-05-27 14:34:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 60,980 KB
最終ジャッジ日時 2024-05-27 14:34:59
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,888 KB
testcase_01 AC 37 ms
59,464 KB
testcase_02 AC 32 ms
52,720 KB
testcase_03 AC 32 ms
52,692 KB
testcase_04 AC 33 ms
52,080 KB
testcase_05 AC 40 ms
60,808 KB
testcase_06 AC 34 ms
52,000 KB
testcase_07 AC 37 ms
60,084 KB
testcase_08 AC 35 ms
53,576 KB
testcase_09 AC 39 ms
59,840 KB
testcase_10 AC 33 ms
52,408 KB
testcase_11 AC 32 ms
52,884 KB
testcase_12 AC 39 ms
52,628 KB
testcase_13 AC 33 ms
52,008 KB
testcase_14 AC 33 ms
52,640 KB
testcase_15 AC 33 ms
52,332 KB
testcase_16 AC 33 ms
52,064 KB
testcase_17 AC 36 ms
53,200 KB
testcase_18 AC 35 ms
52,416 KB
testcase_19 AC 36 ms
52,900 KB
testcase_20 AC 42 ms
59,556 KB
testcase_21 AC 42 ms
60,188 KB
testcase_22 AC 43 ms
60,236 KB
testcase_23 AC 36 ms
52,872 KB
testcase_24 AC 36 ms
52,952 KB
testcase_25 AC 42 ms
60,364 KB
testcase_26 AC 39 ms
60,980 KB
testcase_27 AC 38 ms
60,472 KB
testcase_28 AC 34 ms
53,288 KB
testcase_29 AC 34 ms
52,332 KB
testcase_30 AC 32 ms
52,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
for i in range(1, 1000):
    for j in range(i + 1):
        a = int(100 * j / i + 0.5)
        b = int(100 * (i - j) / i + 0.5)
        if a == A and b == B:
            print(i)
            exit()
0