結果

問題 No.1231 Make a Multiple of Ten
ユーザー horiesinitihoriesiniti
提出日時 2023-02-15 03:06:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,026 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-07-17 14:12:56
合計ジャッジ時間 8,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 509 ms
33,664 KB
testcase_05 AC 460 ms
31,104 KB
testcase_06 AC 230 ms
19,200 KB
testcase_07 AC 536 ms
34,816 KB
testcase_08 AC 344 ms
24,448 KB
testcase_09 AC 173 ms
16,000 KB
testcase_10 AC 482 ms
32,128 KB
testcase_11 AC 560 ms
36,352 KB
testcase_12 AC 970 ms
58,112 KB
testcase_13 AC 1,014 ms
59,904 KB
testcase_14 AC 87 ms
12,032 KB
testcase_15 AC 1,026 ms
60,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

dp=[]
n=gets.to_i
(n+1).times{
	dp<<Array.new(10,-1)
}
dp[0][0]=0
ans=0
xs=gets.split(" ").map{|e| e.to_i}
n.times{|i|
	x=xs[i]
	0.upto(9){|j|
		next if dp[i][j]==-1
		p1=(j+x)%10
		dp[i+1][p1]=[dp[i+1][p1],dp[i][j]+1].max
		dp[i+1][j]=[dp[i+1][j],dp[i][j]].max
		ans=[ans,dp[i+1][0]].max if p1==0
	}
}
puts ans
0