結果

問題 No.1231 Make a Multiple of Ten
ユーザー ああいいああいい
提出日時 2022-02-23 10:20:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 118,952 KB
最終ジャッジ日時 2024-07-01 10:37:11
合計ジャッジ時間 3,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,812 KB
testcase_01 AC 37 ms
52,952 KB
testcase_02 AC 38 ms
52,628 KB
testcase_03 AC 38 ms
53,108 KB
testcase_04 AC 105 ms
94,664 KB
testcase_05 AC 100 ms
93,452 KB
testcase_06 AC 77 ms
83,932 KB
testcase_07 AC 113 ms
96,280 KB
testcase_08 AC 91 ms
90,716 KB
testcase_09 AC 58 ms
73,400 KB
testcase_10 AC 101 ms
94,652 KB
testcase_11 AC 119 ms
96,168 KB
testcase_12 AC 180 ms
108,812 KB
testcase_13 AC 190 ms
118,952 KB
testcase_14 AC 37 ms
52,468 KB
testcase_15 AC 188 ms
118,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
inf = -(1 << 30)
dp = [[inf] * 10 for _ in range(N)]
dp[0][0] = 0
dp[0][A[0]%10] = 1
for i in range(N-1):
    for j in range(10):
        dp[i+1][(j+A[i+1])%10] = max(dp[i+1][(j+A[i+1])%10],dp[i][j] + 1)
    for j in range(10):
        dp[i+1][j] = max(dp[i+1][j],dp[i][j])
print(dp[-1][0])
0