結果
問題 | No.672 最長AB列 |
ユーザー | dong_feng |
提出日時 | 2018-04-19 23:18:40 |
言語 | PHP (8.3.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 3,485 ms |
コンパイル使用メモリ | 30,768 KB |
実行使用メモリ | 48,780 KB |
最終ジャッジ日時 | 2024-06-27 20:25:08 |
合計ジャッジ時間 | 4,057 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
36,808 KB |
testcase_01 | AC | 41 ms
31,264 KB |
testcase_02 | AC | 42 ms
31,224 KB |
testcase_03 | AC | 41 ms
31,192 KB |
testcase_04 | AC | 42 ms
31,268 KB |
testcase_05 | AC | 41 ms
31,420 KB |
testcase_06 | AC | 41 ms
31,004 KB |
testcase_07 | AC | 41 ms
31,556 KB |
testcase_08 | AC | 41 ms
31,204 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php //取得 $charList = array_diff(str_split(fgets(STDIN), 1),array(PHP_EOL, "\n", "\r")); $listCount = count($charList); //処理 for($i=$listCount; $i>0; $i--){//文字列を切る長さのループ if($i%2==0){ //奇数文字の文字列はやる意味がない for($j=0; $j<($listCount-$i+1); $j++){ //文字列のスタート位置を決めるループ $count = 0; //Aの個数をカウントしてくれる for($k=$j; $k<$j+$i; $k++){ //切り出した文字列を回すループ if($charList[$k]=='A') { $count ++; } // echo $charList[$k]; } // echo PHP_EOL; if($count == $i/2) { //Aの個数がちょうど半分なら出力して終わり // echo $j.PHP_EOL; echo $i.PHP_EOL; exit; } } } } echo "0".PHP_EOL;