結果

問題 No.1231 Make a Multiple of Ten
ユーザー convexineqconvexineq
提出日時 2021-02-13 20:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 106,904 KB
最終ジャッジ日時 2024-07-21 00:18:04
合計ジャッジ時間 3,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,692 KB
testcase_01 AC 37 ms
53,684 KB
testcase_02 AC 37 ms
52,476 KB
testcase_03 AC 38 ms
52,124 KB
testcase_04 AC 90 ms
90,760 KB
testcase_05 AC 86 ms
88,880 KB
testcase_06 AC 61 ms
76,484 KB
testcase_07 AC 92 ms
92,688 KB
testcase_08 AC 72 ms
83,020 KB
testcase_09 AC 54 ms
70,284 KB
testcase_10 AC 86 ms
90,604 KB
testcase_11 AC 94 ms
93,500 KB
testcase_12 AC 144 ms
105,488 KB
testcase_13 AC 147 ms
106,836 KB
testcase_14 AC 37 ms
52,316 KB
testcase_15 AC 150 ms
106,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
dp = [0]+[-1<<30]*9
for ai in a:
    ndp = dp[:]
    for i in range(10):
        v = (i+ai)%10
        ndp[v] = max(ndp[v],dp[i]+1)
    dp = ndp
print(dp[0])
0