結果

問題 No.1231 Make a Multiple of Ten
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-18 23:20:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 118,856 KB
最終ジャッジ日時 2024-06-23 13:52:31
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,616 KB
testcase_01 AC 38 ms
52,240 KB
testcase_02 AC 38 ms
52,948 KB
testcase_03 AC 41 ms
52,704 KB
testcase_04 AC 113 ms
94,580 KB
testcase_05 AC 97 ms
93,304 KB
testcase_06 AC 76 ms
83,896 KB
testcase_07 AC 114 ms
95,720 KB
testcase_08 AC 87 ms
90,116 KB
testcase_09 AC 57 ms
74,008 KB
testcase_10 AC 98 ms
94,652 KB
testcase_11 AC 123 ms
95,968 KB
testcase_12 AC 175 ms
108,796 KB
testcase_13 AC 184 ms
118,416 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 183 ms
118,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
INF = 10**18
dp = [[-INF]*10 for _ in range(n+1)]
dp[0][0] = 0
for i in range(n):
    a = A[i]
    for j in range(10):
        dp[i+1][j] = dp[i][j]
    for j in range(10):
        k = (j+a)%10
        dp[i+1][k] = max(dp[i+1][k], dp[i][j]+1)
print(dp[-1][0])
0