結果

問題 No.1231 Make a Multiple of Ten
ユーザー KazunKazun
提出日時 2020-09-19 01:28:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 141,860 KB
最終ジャッジ日時 2024-06-23 13:53:44
合計ジャッジ時間 2,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,588 KB
testcase_01 AC 36 ms
53,100 KB
testcase_02 AC 35 ms
53,100 KB
testcase_03 AC 37 ms
52,720 KB
testcase_04 AC 124 ms
96,752 KB
testcase_05 AC 118 ms
95,388 KB
testcase_06 AC 77 ms
85,028 KB
testcase_07 AC 127 ms
98,112 KB
testcase_08 AC 90 ms
91,732 KB
testcase_09 AC 57 ms
74,696 KB
testcase_10 AC 118 ms
96,308 KB
testcase_11 AC 129 ms
98,280 KB
testcase_12 AC 221 ms
133,124 KB
testcase_13 AC 225 ms
141,816 KB
testcase_14 AC 38 ms
53,356 KB
testcase_15 AC 225 ms
141,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=["*"]+list(map(int,input().split()))

inf=float("inf")
DP=[[-inf]*10 for _ in range(N+1)]
DP[0][0]=0

for i in range(1,N+1):
    a=A[i]%10
    for m in range(10):
        DP[i][m]=max(DP[i-1][m],DP[i-1][(m-a)%10]+1)
print(DP[N][0])
0