結果

問題 No.1231 Make a Multiple of Ten
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-10 17:17:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 362 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 110,304 KB
最終ジャッジ日時 2024-09-14 18:02:56
合計ジャッジ時間 13,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,256 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 1,511 ms
55,820 KB
testcase_05 AC 1,305 ms
50,056 KB
testcase_06 AC 531 ms
26,052 KB
testcase_07 AC 1,590 ms
57,672 KB
testcase_08 AC 907 ms
37,448 KB
testcase_09 AC 324 ms
19,652 KB
testcase_10 AC 1,386 ms
52,372 KB
testcase_11 AC 1,672 ms
61,100 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=[]
for i in a:
    b.append(i%10)
dp=[[-1]*10 for _ in range(n+1)]
dp[0][0]=0
for i in range(1,n+1):
    num=b[i-1]
    for j in range(10):
        if dp[i-1][j]==-1:
            continue
        dp[i][j]=max(dp[i][j],dp[i-1][j])
        k=(j+num)%10
        dp[i][k]=max(dp[i][k],dp[i-1][j]+1)
print(dp[-1][0])
0