結果

問題 No.1231 Make a Multiple of Ten
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-24 09:20:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 324 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 102,360 KB
最終ジャッジ日時 2024-09-20 13:31:43
合計ジャッジ時間 15,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 1,617 ms
55,108 KB
testcase_05 AC 1,393 ms
49,548 KB
testcase_06 AC 569 ms
26,172 KB
testcase_07 AC 1,674 ms
57,152 KB
testcase_08 AC 968 ms
37,176 KB
testcase_09 AC 349 ms
19,764 KB
testcase_10 AC 1,485 ms
51,848 KB
testcase_11 AC 1,783 ms
60,316 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ns=list(map(int,input().split()))

dp=[[-1]*10 for i in range(n+1)]
dp[0][0] = 0

for i in range(n):
    for j in range(10):
        if dp[i][j] == -1:
            continue
        dp[i+1][j]=max(dp[i][j],dp[i+1][j])
        dp[i+1][(j+ns[i])%10] = max(dp[i][j]+1,dp[i+1][(j+ns[i])%10])

    
print(dp[-1][0])
0