結果

問題 No.1231 Make a Multiple of Ten
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-10 17:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 130,972 KB
最終ジャッジ日時 2024-09-14 18:00:35
合計ジャッジ時間 4,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 136 ms
98,768 KB
testcase_05 AC 116 ms
97,152 KB
testcase_06 AC 86 ms
84,992 KB
testcase_07 AC 127 ms
101,248 KB
testcase_08 AC 102 ms
92,460 KB
testcase_09 AC 66 ms
74,752 KB
testcase_10 AC 121 ms
98,944 KB
testcase_11 AC 140 ms
100,972 KB
testcase_12 AC 209 ms
110,072 KB
testcase_13 AC 228 ms
130,972 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 225 ms
130,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=[]
for i in a:
    b.append(i%10)
dp=[[-1]*10 for _ in range(n+1)]
dp[0][0]=0
for i in range(1,n+1):
    num=b[i-1]
    for j in range(10):
        if dp[i-1][j]==-1:
            continue
        dp[i][j]=max(dp[i][j],dp[i-1][j])
        k=(j+num)%10
        dp[i][k]=max(dp[i][k],dp[i-1][j]+1)
print(dp[-1][0])
0