結果

問題 No.1231 Make a Multiple of Ten
ユーザー timitimi
提出日時 2020-09-21 20:38:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,540 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,980 KB
最終ジャッジ日時 2024-06-24 17:58:32
合計ジャッジ時間 10,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 717 ms
20,784 KB
testcase_05 AC 606 ms
19,464 KB
testcase_06 AC 261 ms
14,136 KB
testcase_07 AC 746 ms
21,196 KB
testcase_08 AC 432 ms
15,916 KB
testcase_09 AC 168 ms
12,716 KB
testcase_10 AC 660 ms
19,924 KB
testcase_11 AC 776 ms
21,920 KB
testcase_12 AC 1,422 ms
31,868 KB
testcase_13 AC 1,540 ms
32,980 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 1,523 ms
32,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=[]
for i in A:
    B.append(i%10)
dp=[-100000]*10
dp[0]=0
for i in range(N):
    D=[-100000]*10
    for j in range(10):
        D[(j+B[i])%10]=max(dp[j]+1,dp[(j+B[i])%10])
    dp=D
print(dp[0])
0