結果

問題 No.2681 ゲームセンターの両替
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-04 13:38:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-11-04 13:38:46
合計ジャッジ時間 2,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 36 ms
52,464 KB
testcase_02 AC 36 ms
52,032 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
52,616 KB
testcase_13 AC 35 ms
52,684 KB
testcase_14 AC 36 ms
52,068 KB
testcase_15 AC 36 ms
53,824 KB
testcase_16 AC 51 ms
52,660 KB
testcase_17 AC 36 ms
52,492 KB
testcase_18 AC 35 ms
52,660 KB
testcase_19 AC 37 ms
53,104 KB
testcase_20 AC 36 ms
52,744 KB
testcase_21 AC 36 ms
52,832 KB
testcase_22 WA -
testcase_23 AC 36 ms
52,884 KB
testcase_24 AC 36 ms
52,816 KB
testcase_25 AC 37 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y=map(int,input().split())
c=[1,5,10,50,100,500,1000,2000,5000,10000]
d={v:i for i,v in enumerate(c)}
a=[0]*len(c)
for v in c[::-1]:
  a[d[v]]=Y//v
  Y%=v
if a[d[100]]>=X:
  print("no exchange")
elif sum(a[d[500]:])>0:
  print(a[d[100]]+5)
else:
  print("can't exchange")
0