結果

問題 No.1231 Make a Multiple of Ten
ユーザー shi-moshi-mo
提出日時 2020-09-28 18:05:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-07-02 07:52:04
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 90 ms
11,904 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 390 ms
20,224 KB
testcase_05 AC 355 ms
19,328 KB
testcase_06 AC 197 ms
15,488 KB
testcase_07 AC 401 ms
20,992 KB
testcase_08 AC 266 ms
16,256 KB
testcase_09 AC 151 ms
14,592 KB
testcase_10 AC 371 ms
19,584 KB
testcase_11 AC 429 ms
21,504 KB
testcase_12 AC 695 ms
28,160 KB
testcase_13 AC 733 ms
28,800 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 735 ms
28,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets # discard N
a = gets.split.map(&:to_i).map{|ai| ai % 10 }

dp = [-1] * 10
dp[0] = 0
a.each do |ai|
  next_dp = [-1] * 10
  10.times do |j|
    next if dp[j] < 0 # cannot make j

    if next_dp[j] < dp[j] # use a[0]..a[i-1]
      next_dp[j] = dp[j]
    end
    r = (j + ai) % 10
    if next_dp[r] < (dp[j] + 1) # use a[i]
      next_dp[r] = dp[j] + 1
    end
  end
  dp = next_dp
end
puts dp[0]
0