結果

問題 No.338 アンケート機能
ユーザー ntudantuda
提出日時 2024-05-27 14:33:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-05-27 14:33:36
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,824 KB
testcase_01 AC 37 ms
60,104 KB
testcase_02 AC 32 ms
52,684 KB
testcase_03 AC 31 ms
53,748 KB
testcase_04 AC 34 ms
53,572 KB
testcase_05 WA -
testcase_06 AC 31 ms
52,212 KB
testcase_07 WA -
testcase_08 AC 33 ms
53,680 KB
testcase_09 WA -
testcase_10 AC 33 ms
53,856 KB
testcase_11 AC 31 ms
52,756 KB
testcase_12 AC 32 ms
52,260 KB
testcase_13 AC 32 ms
52,428 KB
testcase_14 AC 33 ms
52,248 KB
testcase_15 AC 39 ms
52,464 KB
testcase_16 AC 31 ms
52,884 KB
testcase_17 AC 31 ms
52,696 KB
testcase_18 AC 32 ms
54,044 KB
testcase_19 AC 34 ms
52,744 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 32 ms
52,668 KB
testcase_24 AC 31 ms
52,276 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 33 ms
53,048 KB
testcase_29 AC 32 ms
51,700 KB
testcase_30 AC 31 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
for i in range(1, 101):
    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