結果

問題 No.338 アンケート機能
ユーザー mlihua09mlihua09
提出日時 2020-09-16 15:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-06-22 03:18:51
合計ジャッジ時間 2,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,108 KB
testcase_01 AC 41 ms
59,568 KB
testcase_02 AC 37 ms
59,136 KB
testcase_03 AC 39 ms
59,848 KB
testcase_04 AC 37 ms
58,692 KB
testcase_05 AC 36 ms
58,984 KB
testcase_06 AC 40 ms
60,244 KB
testcase_07 AC 37 ms
59,456 KB
testcase_08 AC 37 ms
60,476 KB
testcase_09 AC 35 ms
59,024 KB
testcase_10 AC 38 ms
60,928 KB
testcase_11 AC 40 ms
58,972 KB
testcase_12 AC 38 ms
60,780 KB
testcase_13 AC 38 ms
59,900 KB
testcase_14 AC 38 ms
60,016 KB
testcase_15 AC 39 ms
60,496 KB
testcase_16 AC 37 ms
59,896 KB
testcase_17 AC 38 ms
60,460 KB
testcase_18 AC 38 ms
60,544 KB
testcase_19 AC 38 ms
59,412 KB
testcase_20 AC 38 ms
60,604 KB
testcase_21 AC 35 ms
58,424 KB
testcase_22 AC 38 ms
60,116 KB
testcase_23 AC 38 ms
60,480 KB
testcase_24 AC 38 ms
60,316 KB
testcase_25 AC 37 ms
60,656 KB
testcase_26 AC 37 ms
59,772 KB
testcase_27 AC 38 ms
60,864 KB
testcase_28 AC 39 ms
59,464 KB
testcase_29 AC 38 ms
60,020 KB
testcase_30 AC 38 ms
60,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


ans = 200

A, B = map(int, input().split())
A *= 10
B *= 10
if A < B:
    A, B = B, A
    
ans = 200
    
for i in range(1, 201):
    
    for j in range(i + 1):
        
        a = (1000 * i) // (i + j)
        b = (1000 * j) // (i + j)
        
        if A - 5 <= a < A + 5 and B - 5 <= b < B + 5:
            
            ans = min(ans, i + j)
            
print(ans)
0