結果

問題 No.1231 Make a Multiple of Ten
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-15 16:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-11-07 04:04:59
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 95 ms
88,960 KB
testcase_05 AC 90 ms
87,044 KB
testcase_06 AC 68 ms
78,848 KB
testcase_07 AC 96 ms
90,496 KB
testcase_08 AC 73 ms
81,920 KB
testcase_09 AC 60 ms
72,192 KB
testcase_10 AC 88 ms
88,576 KB
testcase_11 AC 94 ms
91,136 KB
testcase_12 AC 128 ms
107,008 KB
testcase_13 AC 135 ms
101,756 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 136 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[-1]*10
dp[0]=0
for x in a:
  x%=10
  ndp=[-1]*10
  for d in range(10):
    if dp[d]>=0:
      ndp[(d+x)%10]=dp[d]+1
  for d in range(10):
    dp[d]=max(dp[d],ndp[d])
print(dp[0])
0