結果

問題 No.2681 ゲームセンターの両替
ユーザー mymelochanmymelochan
提出日時 2024-03-20 21:12:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 55,940 KB
最終ジャッジ日時 2024-10-05 04:02:28
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,660 KB
testcase_01 AC 40 ms
54,416 KB
testcase_02 AC 40 ms
55,940 KB
testcase_03 AC 38 ms
55,408 KB
testcase_04 AC 38 ms
54,140 KB
testcase_05 AC 38 ms
54,312 KB
testcase_06 AC 39 ms
54,784 KB
testcase_07 AC 40 ms
55,752 KB
testcase_08 AC 39 ms
54,700 KB
testcase_09 AC 39 ms
54,428 KB
testcase_10 AC 38 ms
54,800 KB
testcase_11 AC 41 ms
55,564 KB
testcase_12 AC 41 ms
54,504 KB
testcase_13 AC 41 ms
54,248 KB
testcase_14 AC 41 ms
55,352 KB
testcase_15 AC 39 ms
55,208 KB
testcase_16 AC 41 ms
54,984 KB
testcase_17 AC 40 ms
54,296 KB
testcase_18 AC 39 ms
55,564 KB
testcase_19 AC 39 ms
55,912 KB
testcase_20 AC 41 ms
55,128 KB
testcase_21 AC 40 ms
55,756 KB
testcase_22 AC 40 ms
54,672 KB
testcase_23 AC 41 ms
54,380 KB
testcase_24 AC 38 ms
55,588 KB
testcase_25 AC 40 ms
55,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

C,Y = lmin()
Y = Y//100
if Y < C:
    print("can't exchange")
elif Y%5 >= C:
    print("no exchange")
else:
    D = C-Y%5
    print(Y%5+(D+4)//5*5)
0