結果

問題 No.2681 ゲームセンターの両替
ユーザー 👑 p-adicp-adic
提出日時 2024-03-20 22:13:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-10-05 04:12:27
合計ジャッジ時間 1,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,940 KB
testcase_01 AC 35 ms
52,392 KB
testcase_02 AC 35 ms
52,816 KB
testcase_03 AC 33 ms
52,288 KB
testcase_04 AC 32 ms
51,956 KB
testcase_05 AC 33 ms
52,892 KB
testcase_06 AC 33 ms
53,764 KB
testcase_07 AC 34 ms
52,688 KB
testcase_08 AC 34 ms
52,704 KB
testcase_09 AC 34 ms
53,620 KB
testcase_10 AC 34 ms
52,532 KB
testcase_11 AC 33 ms
53,532 KB
testcase_12 AC 33 ms
53,088 KB
testcase_13 AC 33 ms
52,004 KB
testcase_14 AC 33 ms
53,496 KB
testcase_15 AC 34 ms
52,260 KB
testcase_16 AC 34 ms
52,340 KB
testcase_17 AC 35 ms
52,388 KB
testcase_18 AC 33 ms
52,492 KB
testcase_19 AC 33 ms
53,444 KB
testcase_20 AC 34 ms
52,596 KB
testcase_21 AC 35 ms
52,140 KB
testcase_22 AC 37 ms
53,624 KB
testcase_23 AC 36 ms
53,808 KB
testcase_24 AC 36 ms
52,872 KB
testcase_25 AC 34 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
C,Y=map(int,input().split())
Y//=100
b=[5,10,20,50,100,11**9]
a=[Y%b[i+1]//b[i]*b[i]for i in R(5)]
c=d=e=Y%5
for n in[0,0]:
	for i in R(4,-1,-1):
		if d<C:
			if d+a[i]>C:d=C+(d+(C-d+b[i]-1)//b[i]*b[i]-C)%5
			else:d+=a[i]
	b[2],b[3],d,e=b[3],b[2],e,d
print("can't exchange"if Y<C else min(d,e)if c<C else"no exchange")
0