結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,972 KB
testcase_01 WA -
testcase_02 AC 34 ms
53,020 KB
testcase_03 AC 33 ms
52,348 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,132 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 34 ms
52,532 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 33 ms
53,508 KB
testcase_14 AC 34 ms
52,500 KB
testcase_15 AC 38 ms
52,648 KB
testcase_16 AC 36 ms
52,640 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 34 ms
52,340 KB
testcase_20 AC 33 ms
52,684 KB
testcase_21 AC 34 ms
53,444 KB
testcase_22 WA -
testcase_23 AC 34 ms
52,600 KB
testcase_24 AC 34 ms
53,564 KB
testcase_25 AC 34 ms
52,776 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[100]:])>=X:
  ok=0
  ng=10**10
  while ng-ok>1:
    m=(ok+ng)//2
    if a[d[100]]+(sum(a[d[500]:])-500*m)//100>=X:
      ok=m
    else:
      ng=m
  print(a[d[100]]+(sum(a[d[500]:])-500*ok)//100)
else:
  print("can't exchange")
0