結果

問題 No.1231 Make a Multiple of Ten
ユーザー yasshi_noyasshi_no
提出日時 2020-09-25 16:39:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 122,520 KB
最終ジャッジ日時 2024-06-28 05:49:48
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
65,408 KB
testcase_01 AC 58 ms
64,896 KB
testcase_02 AC 59 ms
65,024 KB
testcase_03 AC 57 ms
65,280 KB
testcase_04 AC 149 ms
97,936 KB
testcase_05 AC 137 ms
91,076 KB
testcase_06 AC 99 ms
83,568 KB
testcase_07 AC 153 ms
99,792 KB
testcase_08 AC 115 ms
86,956 KB
testcase_09 AC 87 ms
79,616 KB
testcase_10 AC 142 ms
91,824 KB
testcase_11 AC 157 ms
100,524 KB
testcase_12 AC 211 ms
119,696 KB
testcase_13 AC 215 ms
122,520 KB
testcase_14 AC 60 ms
65,024 KB
testcase_15 AC 219 ms
122,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,itertools,math,string
import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def main():
    
    n = I()
    a = [0] + LI()

    dp = [[n for _ in range(10)] for _ in range(n+1)]
    dp[0][0] = 0

    for i in range(1,n+1):
        for j in range(10):
            dp[i][j] = min(dp[i-1][j], dp[i-1][(j-a[i])%10]+1)

    sm = sum(a)
    ans = n - dp[n][sm%10]
    print(ans)



main()
0