結果

問題 No.1231 Make a Multiple of Ten
ユーザー zer0zer0
提出日時 2020-09-21 15:40:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 118,884 KB
最終ジャッジ日時 2024-06-24 11:37:37
合計ジャッジ時間 2,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,340 KB
testcase_01 AC 36 ms
52,836 KB
testcase_02 AC 37 ms
52,748 KB
testcase_03 AC 37 ms
53,216 KB
testcase_04 AC 117 ms
94,416 KB
testcase_05 AC 107 ms
93,152 KB
testcase_06 AC 81 ms
84,172 KB
testcase_07 AC 116 ms
95,904 KB
testcase_08 AC 94 ms
90,500 KB
testcase_09 AC 62 ms
74,740 KB
testcase_10 AC 108 ms
94,680 KB
testcase_11 AC 128 ms
95,940 KB
testcase_12 AC 199 ms
107,708 KB
testcase_13 AC 205 ms
118,820 KB
testcase_14 AC 38 ms
52,204 KB
testcase_15 AC 211 ms
118,884 KB
権限があれば一括ダウンロードができます

ソースコード

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