結果

問題 No.1231 Make a Multiple of Ten
ユーザー anagohirameanagohirame
提出日時 2020-09-18 22:43:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-06-23 13:51:31
合計ジャッジ時間 2,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
dp = [-10**6 for _ in range(10)]
dp[0] = 0
for x in a:
	x %= 10
	tmp = [-10**6 for _ in range(10)]
	for i in range(10):
		tmp[i] = max(dp[i], dp[(i-x)%10] + 1)
	dp = tmp
print(dp[0])
0