結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 82 ms
12,032 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 373 ms
34,560 KB
testcase_05 AC 328 ms
32,512 KB
testcase_06 AC 178 ms
19,840 KB
testcase_07 AC 383 ms
36,040 KB
testcase_08 AC 255 ms
25,076 KB
testcase_09 AC 139 ms
16,640 KB
testcase_10 AC 334 ms
33,536 KB
testcase_11 AC 400 ms
37,728 KB
testcase_12 AC 694 ms
59,372 KB
testcase_13 AC 729 ms
61,988 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 719 ms
61,952 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