結果

問題 No.1231 Make a Multiple of Ten
ユーザー komkompikomkompi
提出日時 2020-10-21 21:39:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,662 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,920 KB
最終ジャッジ日時 2024-07-21 09:06:43
合計ジャッジ時間 11,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 753 ms
20,500 KB
testcase_05 AC 675 ms
19,188 KB
testcase_06 AC 290 ms
13,992 KB
testcase_07 AC 803 ms
21,048 KB
testcase_08 AC 467 ms
15,644 KB
testcase_09 AC 179 ms
12,544 KB
testcase_10 AC 702 ms
19,780 KB
testcase_11 AC 848 ms
21,908 KB
testcase_12 AC 1,563 ms
31,548 KB
testcase_13 AC 1,613 ms
32,920 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 1,662 ms
32,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())
A=list(map(int,input().split()))

dp=[-1]*10
dp[0]=0

for a in A:
    temp=dp[:]
    for i in range(10):
        if dp[i]!=-1:
            temp[(a+i)%10]=max(dp[i]+1,temp[(a+i)%10])
    dp=temp[:]

print(dp[0])
0