結果

問題 No.2681 ゲームセンターの両替
ユーザー pitPpitP
提出日時 2024-03-20 21:16:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-10-05 04:03:02
合計ジャッジ時間 1,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,376 KB
testcase_01 AC 35 ms
53,224 KB
testcase_02 AC 35 ms
52,428 KB
testcase_03 AC 36 ms
52,304 KB
testcase_04 AC 35 ms
52,688 KB
testcase_05 AC 35 ms
52,288 KB
testcase_06 AC 36 ms
52,136 KB
testcase_07 AC 36 ms
53,008 KB
testcase_08 AC 34 ms
51,900 KB
testcase_09 AC 35 ms
52,880 KB
testcase_10 AC 38 ms
52,732 KB
testcase_11 AC 35 ms
52,236 KB
testcase_12 AC 36 ms
52,668 KB
testcase_13 AC 36 ms
52,232 KB
testcase_14 AC 34 ms
52,836 KB
testcase_15 AC 36 ms
52,488 KB
testcase_16 AC 35 ms
53,152 KB
testcase_17 AC 35 ms
53,112 KB
testcase_18 AC 34 ms
52,672 KB
testcase_19 AC 37 ms
53,432 KB
testcase_20 AC 38 ms
51,888 KB
testcase_21 AC 37 ms
52,556 KB
testcase_22 AC 37 ms
52,360 KB
testcase_23 AC 39 ms
52,400 KB
testcase_24 AC 37 ms
52,504 KB
testcase_25 AC 37 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C, Y = map(int, input().split())
if C * 100 > Y:
    exit(print("can't exchange"))

N = 10
cnt500 = Y // 500
Y %= 500
cnt100 = Y // 100

if cnt100 >= C:
    exit(print("no exchange"))

ok = cnt500; ng = 0
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if mid * 5 + cnt100 >= C:
        ok = mid
    else:
        ng = mid

print(ok * 5 + cnt100)
0