結果

問題 No.1231 Make a Multiple of Ten
ユーザー FromBooskaFromBooska
提出日時 2023-09-24 10:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 150,088 KB
最終ジャッジ日時 2024-07-17 11:45:09
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,640 KB
testcase_01 AC 37 ms
52,572 KB
testcase_02 AC 37 ms
52,016 KB
testcase_03 AC 37 ms
52,288 KB
testcase_04 AC 133 ms
97,484 KB
testcase_05 AC 124 ms
96,844 KB
testcase_06 AC 81 ms
85,092 KB
testcase_07 AC 134 ms
97,348 KB
testcase_08 AC 97 ms
90,672 KB
testcase_09 AC 72 ms
82,408 KB
testcase_10 AC 129 ms
97,132 KB
testcase_11 AC 146 ms
97,364 KB
testcase_12 AC 231 ms
125,860 KB
testcase_13 AC 260 ms
149,900 KB
testcase_14 AC 37 ms
52,708 KB
testcase_15 AC 258 ms
150,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 部分和dpの変形かな
# dp[i番目まで見て][j mod 10]の最高枚数
# aはmod 10する

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

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

for i in range(1, N+1):
    num = A[i-1]%10
    # 使わない
    for j in range(10):
        dp[i][j] = dp[i-1][j]
    # 使う
    for j in range(10):
        dp[i][(j+num)%10] = max(dp[i][(j+num)%10], dp[i-1][j]+1)
        
    #print(dp[i])
    
ans = dp[N][0]
print(ans)




0