結果

問題 No.45 回転寿司
ユーザー DevbotBotDevbotBot
提出日時 2015-07-02 15:18:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 2,645 ms
コンパイル使用メモリ 30,828 KB
実行使用メモリ 31,304 KB
最終ジャッジ日時 2024-06-08 09:41:08
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,276 KB
testcase_01 AC 38 ms
30,960 KB
testcase_02 AC 37 ms
30,904 KB
testcase_03 AC 38 ms
30,728 KB
testcase_04 AC 38 ms
31,104 KB
testcase_05 AC 39 ms
30,992 KB
testcase_06 AC 39 ms
30,872 KB
testcase_07 AC 39 ms
30,912 KB
testcase_08 AC 38 ms
31,052 KB
testcase_09 AC 38 ms
30,848 KB
testcase_10 AC 39 ms
31,028 KB
testcase_11 AC 38 ms
31,244 KB
testcase_12 AC 37 ms
30,796 KB
testcase_13 AC 37 ms
31,184 KB
testcase_14 AC 36 ms
30,732 KB
testcase_15 AC 37 ms
30,956 KB
testcase_16 AC 37 ms
30,792 KB
testcase_17 AC 38 ms
30,788 KB
testcase_18 AC 36 ms
30,844 KB
testcase_19 AC 38 ms
31,076 KB
testcase_20 AC 38 ms
30,804 KB
testcase_21 AC 38 ms
30,992 KB
testcase_22 AC 36 ms
31,092 KB
testcase_23 AC 37 ms
31,060 KB
testcase_24 AC 36 ms
30,984 KB
testcase_25 AC 39 ms
31,024 KB
testcase_26 AC 39 ms
30,832 KB
testcase_27 AC 39 ms
31,116 KB
testcase_28 AC 38 ms
30,780 KB
testcase_29 AC 38 ms
31,304 KB
testcase_30 AC 39 ms
31,152 KB
testcase_31 AC 37 ms
30,992 KB
testcase_32 AC 35 ms
30,984 KB
testcase_33 AC 37 ms
30,700 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$v = explode(' ', (trim(fgets(STDIN))));
$dp[] = array();
$max = 0;
for ($i = 0; $i < $n; $i++){
	$dp[$i] = $v[$i];
	for ($j = max(0, $i -3); $j < $i -1; $j++){
		$dp[$i] = max($dp[$i], $dp[$j] + $v[$i]);
	}
	$max =max($max, $dp[$i]);
}
echo $max . PHP_EOL;
0