結果

問題 No.1231 Make a Multiple of Ten
ユーザー zer0zer0
提出日時 2020-09-21 15:40:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 371 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 98,212 KB
最終ジャッジ日時 2024-06-24 11:37:34
合計ジャッジ時間 14,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,820 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 1,660 ms
51,092 KB
testcase_05 AC 1,374 ms
46,048 KB
testcase_06 AC 551 ms
24,508 KB
testcase_07 AC 1,719 ms
52,828 KB
testcase_08 AC 970 ms
35,172 KB
testcase_09 AC 347 ms
18,868 KB
testcase_10 AC 1,430 ms
48,044 KB
testcase_11 AC 1,765 ms
55,856 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
for i in range(N):
    a[i] = a[i] % 10
dp = [[0] * 10 for _ in range(N + 1)]
dp[0][0] = 1
for i in range(N):
    for j in range(10):
        if dp[i][j] != 0:
            dp[i + 1][(j + a[i]) % 10] = max(dp[i + 1][(j + a[i]) % 10], dp[i][j] + 1)
        dp[i + 1][j] = max(dp[i][j], dp[i + 1][j])

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