結果

問題 No.45 回転寿司
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-06-13 03:09:00
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 408,448 KB
最終ジャッジ日時 2024-11-24 17:00:33
合計ジャッジ時間 94,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,019 ms
320,512 KB
testcase_01 AC 4,463 ms
408,448 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 4,885 ms
209,956 KB
testcase_05 AC 172 ms
243,456 KB
testcase_06 AC 3,178 ms
149,156 KB
testcase_07 TLE -
testcase_08 AC 812 ms
56,360 KB
testcase_09 TLE -
testcase_10 AC 2,110 ms
102,912 KB
testcase_11 AC 592 ms
38,656 KB
testcase_12 TLE -
testcase_13 AC 154 ms
16,768 KB
testcase_14 AC 102 ms
13,952 KB
testcase_15 AC 2,531 ms
120,320 KB
testcase_16 AC 1,077 ms
61,056 KB
testcase_17 AC 1,978 ms
96,640 KB
testcase_18 AC 1,086 ms
64,128 KB
testcase_19 TLE -
testcase_20 AC 101 ms
13,824 KB
testcase_21 AC 140 ms
16,256 KB
testcase_22 AC 78 ms
12,160 KB
testcase_23 AC 76 ms
12,160 KB
testcase_24 AC 79 ms
12,160 KB
testcase_25 AC 76 ms
12,160 KB
testcase_26 AC 2,621 ms
120,704 KB
testcase_27 TLE -
testcase_28 AC 3,015 ms
135,424 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 76 ms
12,416 KB
testcase_32 AC 73 ms
12,160 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$n = gets.to_i
$v = gets.strip.split.map{|e| e.to_i}

$dp = {}
$n.times {|i| $dp[i] = {}}

def recursive i, now
  if i >= $n
    return now
  end
  if $dp[i].key?(now)
    return $dp[i][now]
  end
  # 今回の皿を取る場合
  a = recursive(i + 2, now + $v[i])
  # 見送る場合
  b = recursive(i + 1, now)
  max = [a, b].max
  $dp[i][now] = max
end

puts recursive 0, 0
0