結果

問題 No.338 アンケート機能
ユーザー yomo3yomo3
提出日時 2020-04-07 17:30:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-07 18:42:42
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())

ans = 10**5
for a in range(0, 201):
    for b in range(0, 201):
        s = a + b
        if s * (10 * A - 5) <= 1000 * a < s * (10 * A + 5):
            if s * (10 * B - 5) <= 1000 * b < s * (10 * B + 5):
                ans = min(ans, s)
print(ans)
0