結果

問題 No.1231 Make a Multiple of Ten
ユーザー shotoyooshotoyoo
提出日時 2020-09-19 13:49:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 107,276 KB
最終ジャッジ日時 2024-06-23 13:56:21
合計ジャッジ時間 2,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,100 KB
testcase_01 AC 36 ms
51,952 KB
testcase_02 AC 36 ms
52,228 KB
testcase_03 AC 36 ms
52,560 KB
testcase_04 AC 90 ms
88,860 KB
testcase_05 AC 86 ms
87,176 KB
testcase_06 AC 60 ms
76,340 KB
testcase_07 AC 93 ms
90,720 KB
testcase_08 AC 73 ms
82,220 KB
testcase_09 AC 56 ms
70,900 KB
testcase_10 AC 90 ms
88,572 KB
testcase_11 AC 97 ms
90,688 KB
testcase_12 AC 137 ms
107,276 KB
testcase_13 AC 143 ms
101,708 KB
testcase_14 AC 37 ms
52,764 KB
testcase_15 AC 143 ms
102,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n = int(input())
a = list(map(int, input().split()))
inf = 10**15
dp = [-inf]*10
dp[0] = 0
for i in range(n):
    nl = [inf]*10
    nl[0] = 0
    for j in range(10):
        nl[(j+a[i])%10] = max(dp[(j+a[i])%10], dp[j] + 1)
    dp = nl
#     print(dp)
if dp[0]>-inf:
    ans = dp[0]
else:
    ans = 0
print(ans)
0