結果

問題 No.338 アンケート機能
ユーザー 👑 KazunKazun
提出日時 2021-01-08 03:53:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 59,900 KB
最終ジャッジ日時 2024-11-14 15:23:15
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,496 KB
testcase_01 AC 42 ms
58,132 KB
testcase_02 AC 37 ms
52,156 KB
testcase_03 AC 37 ms
52,476 KB
testcase_04 AC 37 ms
53,416 KB
testcase_05 AC 42 ms
59,592 KB
testcase_06 AC 37 ms
51,680 KB
testcase_07 AC 40 ms
58,272 KB
testcase_08 AC 36 ms
53,044 KB
testcase_09 AC 42 ms
58,208 KB
testcase_10 AC 38 ms
53,280 KB
testcase_11 AC 40 ms
52,156 KB
testcase_12 AC 38 ms
52,960 KB
testcase_13 AC 39 ms
52,612 KB
testcase_14 AC 37 ms
52,976 KB
testcase_15 AC 36 ms
52,768 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 37 ms
52,836 KB
testcase_18 AC 37 ms
52,052 KB
testcase_19 AC 37 ms
53,160 KB
testcase_20 AC 43 ms
59,036 KB
testcase_21 AC 42 ms
58,588 KB
testcase_22 AC 42 ms
59,592 KB
testcase_23 AC 38 ms
53,160 KB
testcase_24 AC 37 ms
53,088 KB
testcase_25 AC 43 ms
59,900 KB
testcase_26 AC 43 ms
59,660 KB
testcase_27 AC 43 ms
58,140 KB
testcase_28 AC 38 ms
51,692 KB
testcase_29 AC 37 ms
53,116 KB
testcase_30 AC 37 ms
53,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A,B):
    k=1
    while True:
        for a in range(k+1):
            b=k-a

            if 200*a-k<2*A*k<=200*a+k and 200*b-k<2*B*k<=200*b+k:
                return  k
        k+=1

A,B=map(int,input().split())
print(solve(A,B))
0