結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,128 KB
testcase_01 AC 35 ms
53,348 KB
testcase_02 AC 36 ms
52,908 KB
testcase_03 AC 38 ms
53,592 KB
testcase_04 AC 91 ms
89,164 KB
testcase_05 AC 85 ms
87,616 KB
testcase_06 AC 65 ms
78,864 KB
testcase_07 AC 92 ms
90,804 KB
testcase_08 AC 72 ms
82,268 KB
testcase_09 AC 59 ms
77,092 KB
testcase_10 AC 87 ms
88,952 KB
testcase_11 AC 93 ms
91,036 KB
testcase_12 AC 145 ms
107,520 KB
testcase_13 AC 144 ms
101,740 KB
testcase_14 AC 38 ms
52,648 KB
testcase_15 AC 142 ms
102,096 KB
権限があれば一括ダウンロードができます

ソースコード

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