結果

問題 No.636 硬貨の枚数2
ユーザー convexineqconvexineq
提出日時 2021-02-26 04:38:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,388 KB
最終ジャッジ日時 2024-10-01 19:49:09
合計ジャッジ時間 5,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,480 KB
testcase_01 AC 37 ms
52,760 KB
testcase_02 AC 37 ms
52,928 KB
testcase_03 AC 38 ms
54,012 KB
testcase_04 AC 37 ms
53,016 KB
testcase_05 AC 38 ms
53,304 KB
testcase_06 AC 38 ms
53,764 KB
testcase_07 AC 38 ms
52,248 KB
testcase_08 AC 37 ms
53,688 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 38 ms
52,568 KB
testcase_11 AC 37 ms
52,412 KB
testcase_12 AC 37 ms
52,348 KB
testcase_13 AC 37 ms
54,236 KB
testcase_14 AC 37 ms
52,472 KB
testcase_15 AC 37 ms
52,128 KB
testcase_16 AC 37 ms
52,216 KB
testcase_17 AC 37 ms
52,676 KB
testcase_18 AC 38 ms
52,396 KB
testcase_19 AC 37 ms
52,944 KB
testcase_20 AC 37 ms
52,548 KB
testcase_21 AC 38 ms
52,064 KB
testcase_22 AC 37 ms
53,136 KB
testcase_23 AC 39 ms
53,148 KB
testcase_24 AC 59 ms
66,600 KB
testcase_25 AC 82 ms
76,120 KB
testcase_26 AC 47 ms
62,100 KB
testcase_27 AC 64 ms
69,828 KB
testcase_28 AC 50 ms
63,560 KB
testcase_29 AC 83 ms
75,924 KB
testcase_30 AC 46 ms
62,320 KB
testcase_31 AC 77 ms
74,264 KB
testcase_32 AC 51 ms
62,956 KB
testcase_33 AC 40 ms
54,868 KB
testcase_34 AC 93 ms
76,324 KB
testcase_35 AC 94 ms
75,860 KB
testcase_36 AC 96 ms
76,016 KB
testcase_37 AC 94 ms
76,176 KB
testcase_38 AC 93 ms
75,908 KB
testcase_39 AC 97 ms
75,972 KB
testcase_40 AC 97 ms
75,980 KB
testcase_41 AC 99 ms
76,020 KB
testcase_42 AC 94 ms
76,036 KB
testcase_43 AC 95 ms
76,388 KB
testcase_44 AC 70 ms
71,604 KB
testcase_45 AC 73 ms
73,356 KB
testcase_46 AC 67 ms
71,720 KB
testcase_47 AC 69 ms
71,380 KB
testcase_48 AC 67 ms
70,432 KB
testcase_49 AC 69 ms
72,068 KB
testcase_50 AC 69 ms
72,500 KB
testcase_51 AC 69 ms
72,608 KB
testcase_52 AC 70 ms
73,024 KB
testcase_53 AC 66 ms
70,544 KB
testcase_54 AC 36 ms
52,532 KB
testcase_55 AC 37 ms
53,156 KB
testcase_56 AC 37 ms
53,300 KB
testcase_57 AC 37 ms
53,012 KB
testcase_58 AC 37 ms
52,924 KB
testcase_59 AC 37 ms
52,704 KB
testcase_60 AC 37 ms
52,560 KB
testcase_61 AC 37 ms
52,712 KB
testcase_62 AC 37 ms
52,432 KB
testcase_63 AC 37 ms
54,188 KB
testcase_64 AC 46 ms
61,740 KB
testcase_65 AC 46 ms
61,724 KB
testcase_66 AC 45 ms
61,168 KB
testcase_67 AC 46 ms
61,984 KB
testcase_68 AC 46 ms
60,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = "0"+input()
leq = INF = 1<<30
mor = 0
for i in map(int,s[::-1]):
    nleq = nmor = INF
    # ぴったり、ぴったり-5, 0円、5円
    if i <=9: nmor = min(nmor, mor + (i if i < 5 else 1+(i-5)))
    if i >=5: nleq = min(nleq, mor + 1 + i-5)
    if i > 0: nleq = min(nleq, mor + (10-i if i >= 5 else 1+5-i))
    if i <=5: nmor = min(nmor, mor + 1 + (5-i))
    i += 1
    if i <=9: nmor = min(nmor, leq + (i if i < 5 else 1+(i-5)))
    if i >=5: nleq = min(nleq, leq + 1 + i-5)
    if i > 0: nleq = min(nleq, leq + (10-i if i >= 5 else 1+5-i))
    if i <=5: nmor = min(nmor, leq + 1 + (5-i))
    leq,mor = nleq,nmor
print(mor)
0