結果

問題 No.2681 ゲームセンターの両替
ユーザー hato336hato336
提出日時 2024-03-20 21:44:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-30 07:33:20
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
85,860 KB
testcase_01 AC 112 ms
85,716 KB
testcase_02 AC 113 ms
85,916 KB
testcase_03 AC 112 ms
85,836 KB
testcase_04 WA -
testcase_05 AC 113 ms
85,736 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 112 ms
85,760 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 112 ms
85,856 KB
testcase_14 AC 111 ms
85,776 KB
testcase_15 AC 108 ms
85,724 KB
testcase_16 AC 108 ms
85,912 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 109 ms
86,020 KB
testcase_21 AC 113 ms
85,884 KB
testcase_22 AC 111 ms
85,780 KB
testcase_23 AC 109 ms
85,772 KB
testcase_24 AC 112 ms
85,860 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
c,y = map(int,input().split())
if y // 100 < c:
    exit(print('can\'t exchange'))
d = collections.defaultdict(int)
z = [1,5,10,50,100,500,1000,2000,5000,10000]
for i in reversed(z):
    d[i] = y // i
    y %= i
if d[100] >= c:
    exit(print('no exchange'))
print(max(d[100],c))
exit()
ans = 0
now = d[100]
for i in reversed(z):
    if i <= 100:
        break
    if now >= c:
        break
    while d[i] > 0 and now < c:
        now += i // 100
        d[i] -= 1
        ans += 1
print(ans)
0