結果

問題 No.1231 Make a Multiple of Ten
ユーザー prd_xxxprd_xxx
提出日時 2020-09-18 21:42:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 105,436 KB
最終ジャッジ日時 2024-06-22 09:15:12
合計ジャッジ時間 17,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 1,269 ms
53,892 KB
testcase_05 AC 1,125 ms
48,520 KB
testcase_06 AC 454 ms
25,540 KB
testcase_07 AC 1,316 ms
55,876 KB
testcase_08 AC 771 ms
36,308 KB
testcase_09 AC 283 ms
19,512 KB
testcase_10 AC 1,197 ms
50,824 KB
testcase_11 AC 1,418 ms
59,124 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,880 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

dp = [[None]*10 for _ in range(N+1)]
dp[0][0] = 0
for i,a in enumerate(A):
    for d in range(10):
        dp[i+1][d] = dp[i][d]
    for d in range(10):
        if dp[i][d] is None: continue
        n = (d+a)%10
        dp[i+1][n] = max(0 if dp[i+1][n] is None else dp[i+1][n], dp[i][d] + 1)
print(dp[-1][0])
0