結果

問題 No.1231 Make a Multiple of Ten
ユーザー wgrapewgrape
提出日時 2024-10-09 15:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 106,936 KB
最終ジャッジ日時 2024-10-09 15:54:15
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,308 KB
testcase_01 AC 34 ms
52,432 KB
testcase_02 AC 36 ms
52,060 KB
testcase_03 AC 35 ms
53,240 KB
testcase_04 AC 109 ms
89,104 KB
testcase_05 AC 85 ms
86,812 KB
testcase_06 AC 60 ms
76,760 KB
testcase_07 AC 96 ms
90,324 KB
testcase_08 AC 73 ms
81,920 KB
testcase_09 AC 53 ms
70,040 KB
testcase_10 AC 88 ms
88,328 KB
testcase_11 AC 95 ms
90,420 KB
testcase_12 AC 135 ms
106,936 KB
testcase_13 AC 144 ms
101,444 KB
testcase_14 AC 36 ms
52,844 KB
testcase_15 AC 145 ms
101,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

# dp[s] = 合計値を10でわったあまりがsのときに選んだカードの最大枚数
INF = 1 << 60
dp = [-INF] * 10
dp[0] = 0
for i in range(N):
    new_dp = dp.copy()
    for s in range(10):
        if dp[s] == -INF:
            continue
        new_dp[(s + A[i]) % 10] = max(new_dp[(s + A[i]) % 10], dp[s] + 1)
    dp = new_dp

print(dp[0])
0