結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー phptarophptaro
提出日時 2015-02-28 14:44:25
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 70,104 KB
最終ジャッジ日時 2024-06-12 22:22:21
合計ジャッジ時間 7,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
32,276 KB
testcase_01 WA -
testcase_02 AC 42 ms
32,400 KB
testcase_03 AC 49 ms
32,532 KB
testcase_04 AC 43 ms
32,276 KB
testcase_05 WA -
testcase_06 AC 43 ms
32,400 KB
testcase_07 AC 46 ms
32,400 KB
testcase_08 AC 44 ms
32,272 KB
testcase_09 AC 45 ms
32,528 KB
testcase_10 AC 43 ms
32,272 KB
testcase_11 AC 43 ms
32,404 KB
testcase_12 AC 43 ms
32,376 KB
testcase_13 WA -
testcase_14 AC 42 ms
32,400 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);
$arr2 = array();
$ans = array();


for ($j = 0; $j < $num; $j++) {
	$L = $j;	//範囲の始まり
	
	for ($k = $j+1; $k < $num; $k++) {
		$R = $k;	//範囲の終わり	
		$range = $R - $L +1;	
		for ($i = $L; $i <= $R; $i++) {
			$arr2[] = $arr[$i];
		}
		
		if($range == count(array_unique($arr2))){
			$ans[] = $range;
		}
	}
}
//var_dump($ans);

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

echo $answer;
0