結果

問題 No.2681 ゲームセンターの両替
ユーザー 👑 rin204rin204
提出日時 2024-03-03 14:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 53,536 KB
最終ジャッジ日時 2024-10-05 03:59:50
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,692 KB
testcase_01 AC 32 ms
52,756 KB
testcase_02 AC 30 ms
52,080 KB
testcase_03 AC 31 ms
53,220 KB
testcase_04 AC 31 ms
52,840 KB
testcase_05 AC 31 ms
51,628 KB
testcase_06 AC 31 ms
52,692 KB
testcase_07 AC 30 ms
52,624 KB
testcase_08 AC 31 ms
53,188 KB
testcase_09 AC 31 ms
52,308 KB
testcase_10 AC 31 ms
52,332 KB
testcase_11 AC 32 ms
53,536 KB
testcase_12 AC 33 ms
52,356 KB
testcase_13 AC 33 ms
52,376 KB
testcase_14 AC 35 ms
52,916 KB
testcase_15 AC 35 ms
52,216 KB
testcase_16 AC 35 ms
53,132 KB
testcase_17 AC 34 ms
52,436 KB
testcase_18 AC 35 ms
52,984 KB
testcase_19 AC 35 ms
52,340 KB
testcase_20 AC 31 ms
52,220 KB
testcase_21 AC 33 ms
52,076 KB
testcase_22 AC 33 ms
52,632 KB
testcase_23 AC 31 ms
52,872 KB
testcase_24 AC 32 ms
52,824 KB
testcase_25 AC 32 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c, y = map(int, input().split())
y //= 100
if y < c:
    print("can't exchange")
elif y % 5 >= c:
    print("no exchange")
else:
    c += (y - c) % 5
    print(c)
0