結果
問題 | No.3009 異なる数字の最大の範囲(勉強会用) |
ユーザー | phptaro |
提出日時 | 2015-02-28 17:06:53 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 735 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 32,276 KB |
実行使用メモリ | 74,332 KB |
最終ジャッジ日時 | 2024-06-12 22:27:01 |
合計ジャッジ時間 | 7,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
32,396 KB |
testcase_01 | AC | 38 ms
32,528 KB |
testcase_02 | AC | 42 ms
32,404 KB |
testcase_03 | AC | 43 ms
32,404 KB |
testcase_04 | AC | 41 ms
32,344 KB |
testcase_05 | AC | 45 ms
32,400 KB |
testcase_06 | AC | 39 ms
32,400 KB |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
32,340 KB |
testcase_09 | AC | 38 ms
32,404 KB |
testcase_10 | AC | 38 ms
32,528 KB |
testcase_11 | AC | 39 ms
32,532 KB |
testcase_12 | AC | 37 ms
32,404 KB |
testcase_13 | WA | - |
testcase_14 | AC | 39 ms
32,272 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
ソースコード
<?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) +1, false); //全てfalseでうめる $L = $j; //範囲の始まり $arr2[$arr[$L]] = true; //var_dump($arr2); for ($k = $j+1; $k < $num; $k++) { $R = $k; //範囲の終わり if($arr2[$arr[$R]] === false){ $arr2[$arr[$R]] = true; //echo "true L:$L R:$R"." $arr[$L] $arr[$R]"."\n"; }else{ //echo "false L:$L R:$R"." $arr[$L] $arr[$R]"."\n"; $ans[] = $R - $L; break; } } } //var_dump($ans); //var_dump($arr2); if(count($ans) == 0){ $answer = $num; }else{ $answer = max($ans); } echo $answer."\n";