結果

問題 No.1231 Make a Multiple of Ten
ユーザー O2MTO2MT
提出日時 2020-09-19 18:20:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 328 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 115,120 KB
最終ジャッジ日時 2024-06-23 18:13:47
合計ジャッジ時間 13,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,384 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 1,540 ms
59,508 KB
testcase_05 AC 1,357 ms
53,384 KB
testcase_06 AC 571 ms
27,452 KB
testcase_07 AC 1,651 ms
61,880 KB
testcase_08 AC 937 ms
39,884 KB
testcase_09 AC 348 ms
20,660 KB
testcase_10 AC 1,427 ms
55,936 KB
testcase_11 AC 1,845 ms
65,184 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
ans = 0

dp = [[-1 for _ in range(10)] for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
  for j in range(10):
    if dp[i][j] == -1:
      continue
    dp[i+1][(j+A[i])%10] = max(dp[i+1][(j+A[i])%10], dp[i][j]+1)
    dp[i+1][j] = max(dp[i+1][j], dp[i][j])
print(dp[N][0])
0