結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 739 ms
20,780 KB
testcase_05 AC 647 ms
19,464 KB
testcase_06 AC 265 ms
14,008 KB
testcase_07 AC 734 ms
21,196 KB
testcase_08 AC 450 ms
15,788 KB
testcase_09 AC 174 ms
12,724 KB
testcase_10 AC 676 ms
19,920 KB
testcase_11 AC 795 ms
21,840 KB
testcase_12 AC 1,450 ms
31,868 KB
testcase_13 AC 1,525 ms
32,976 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 1,543 ms
32,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=[]
for i in A:
    B.append(i%10)
dp=[-1000]*10
dp[0]=0
for i in range(N):
    D=[-1000]*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