結果

問題 No.45 回転寿司
ユーザー DevbotBotDevbotBot
提出日時 2015-07-02 15:18:29
言語 PHP
(843.2)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 30,984 KB
最終ジャッジ日時 2024-12-27 11:43:34
合計ジャッジ時間 5,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,928 KB
testcase_01 AC 42 ms
30,872 KB
testcase_02 AC 42 ms
30,724 KB
testcase_03 AC 42 ms
30,728 KB
testcase_04 AC 42 ms
30,984 KB
testcase_05 AC 44 ms
30,836 KB
testcase_06 AC 42 ms
30,680 KB
testcase_07 AC 40 ms
30,888 KB
testcase_08 AC 41 ms
30,800 KB
testcase_09 AC 40 ms
30,876 KB
testcase_10 AC 40 ms
30,748 KB
testcase_11 AC 40 ms
30,940 KB
testcase_12 AC 42 ms
30,712 KB
testcase_13 AC 42 ms
30,768 KB
testcase_14 AC 43 ms
30,876 KB
testcase_15 AC 39 ms
30,788 KB
testcase_16 AC 40 ms
30,700 KB
testcase_17 AC 41 ms
30,768 KB
testcase_18 AC 39 ms
30,804 KB
testcase_19 AC 40 ms
30,808 KB
testcase_20 AC 42 ms
30,808 KB
testcase_21 AC 41 ms
30,972 KB
testcase_22 AC 41 ms
30,940 KB
testcase_23 AC 41 ms
30,744 KB
testcase_24 AC 39 ms
30,980 KB
testcase_25 AC 41 ms
30,540 KB
testcase_26 AC 41 ms
30,736 KB
testcase_27 AC 40 ms
30,644 KB
testcase_28 AC 41 ms
30,852 KB
testcase_29 AC 40 ms
30,684 KB
testcase_30 AC 42 ms
30,816 KB
testcase_31 AC 40 ms
30,876 KB
testcase_32 AC 41 ms
30,632 KB
testcase_33 AC 43 ms
30,788 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