結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー phptarophptaro
提出日時 2015-02-28 16:14:38
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 18,724 KB
実行使用メモリ 92,976 KB
最終ジャッジ日時 2023-09-03 16:46:49
合計ジャッジ時間 7,291 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
19,016 KB
testcase_01 WA -
testcase_02 AC 16 ms
18,928 KB
testcase_03 AC 15 ms
18,820 KB
testcase_04 WA -
testcase_05 AC 16 ms
18,956 KB
testcase_06 AC 16 ms
18,832 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 16 ms
18,812 KB
testcase_10 AC 16 ms
18,844 KB
testcase_11 WA -
testcase_12 AC 17 ms
18,892 KB
testcase_13 WA -
testcase_14 AC 16 ms
18,844 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num = rtrim(fgets(STDIN), PHP_EOL);
$points = trim(fgets(STDIN));
$arr = explode(" ", $points);

$ans = array();
//var_dump($arr);


for ($j = 0; $j < $num; $j++) {
	$arr2 = array_fill(0, max($arr), false);	//全てfalseでうめる
	$L = $j;	//範囲の始まり
	$arr2[$arr[$L]] = true;
	for ($k = $j+1; $k < $num; $k++) {
		$R = $k;	//範囲の終わり
		$range = $R - $L +1;
		if($arr2[$arr[$R]] === false){
			$arr2[$arr[$R]] = true;
		}else{
			$ans[] = $range;
			//echo $range."range\n";
			break;
		}
	}
}
//var_dump($ans);
//var_dump($arr2);

if(count($ans) == 0){
	$answer = 1;
}else{
	$answer = max($ans);
}

echo $answer."\n";
0