結果

問題 No.1231 Make a Multiple of Ten
ユーザー masashi0217masashi0217
提出日時 2021-03-24 01:09:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 62,324 KB
最終ジャッジ日時 2024-05-04 19:01:59
合計ジャッジ時間 7,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 71 ms
12,160 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 342 ms
34,812 KB
testcase_05 AC 303 ms
32,640 KB
testcase_06 AC 165 ms
19,840 KB
testcase_07 AC 353 ms
36,172 KB
testcase_08 AC 238 ms
24,944 KB
testcase_09 AC 130 ms
16,768 KB
testcase_10 AC 308 ms
33,536 KB
testcase_11 AC 370 ms
37,876 KB
testcase_12 AC 636 ms
59,760 KB
testcase_13 AC 669 ms
62,080 KB
testcase_14 AC 74 ms
12,032 KB
testcase_15 AC 668 ms
62,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
a = gets.chomp.split(" ").map(&:to_i)
#動的計画法
INF = Float::INFINITY
dp = Array.new(n+1).map{Array.new(10,-INF)}
dp[0][0] = 0
0.upto(n-1) do |i|
    ichi = a[i] % 10
    0.upto(9) do |j|
        dp[i+1][(j+ichi)%10] = [dp[i][j]+1,dp[i][(j+ichi)%10]].max
    end
end
puts dp[-1][0]
0