結果

問題 No.2681 ゲームセンターの両替
ユーザー timitimi
提出日時 2024-03-20 21:18:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 81,704 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-10-05 04:03:56
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,892 KB
testcase_01 AC 35 ms
52,376 KB
testcase_02 AC 35 ms
52,672 KB
testcase_03 AC 37 ms
52,484 KB
testcase_04 AC 36 ms
52,696 KB
testcase_05 AC 34 ms
52,332 KB
testcase_06 AC 33 ms
52,408 KB
testcase_07 AC 34 ms
52,020 KB
testcase_08 AC 34 ms
52,292 KB
testcase_09 AC 33 ms
52,236 KB
testcase_10 AC 33 ms
52,736 KB
testcase_11 AC 38 ms
52,776 KB
testcase_12 AC 36 ms
51,964 KB
testcase_13 AC 35 ms
52,624 KB
testcase_14 AC 35 ms
52,400 KB
testcase_15 AC 35 ms
52,280 KB
testcase_16 AC 34 ms
52,396 KB
testcase_17 AC 34 ms
52,116 KB
testcase_18 AC 34 ms
52,740 KB
testcase_19 AC 35 ms
52,616 KB
testcase_20 AC 35 ms
52,732 KB
testcase_21 AC 35 ms
52,068 KB
testcase_22 AC 38 ms
52,264 KB
testcase_23 AC 34 ms
53,432 KB
testcase_24 AC 34 ms
52,736 KB
testcase_25 AC 34 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C,Y=map(int, input().split())
#A=list(map(int, input().split()))
D=[10000,5000,2000,1000,500,100,50,10,5,1]
E=[]
for d in D:
  c=Y//d
  E.append(c)
  Y-=d*c
#print(E) 
c=0
if E[5]>=C:
  print('no exchange')
  exit()
for i in range(len(D)):
  if D[i]>=100:
    c+=(D[i]//100)*E[i]
if c<C:
  print("can't exchange")
  exit()
c=E[5]
d=(C-c-1)//5+1
print(E[5]+5*d)
0