結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 1,123 ms
20,884 KB
testcase_05 AC 961 ms
19,576 KB
testcase_06 AC 398 ms
14,232 KB
testcase_07 AC 1,142 ms
21,316 KB
testcase_08 AC 687 ms
15,932 KB
testcase_09 AC 239 ms
12,800 KB
testcase_10 AC 1,048 ms
20,024 KB
testcase_11 AC 1,258 ms
22,028 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 28 ms
10,880 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import copy

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

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

for a in A:
    NDP=copy.deepcopy(DP)
    for i in range(10):
        if DP[i]!=-1:
            NDP[(i+a)%10]=max(DP[(i+a)%10],DP[i]+1)
    DP=NDP

print(DP[0])
            
0