結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | horiesiniti |
提出日時 | 2023-02-15 03:06:31 |
言語 | Ruby (3.4.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
コンパイルメッセージ
Syntax OK
ソースコード
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