結果

問題 No.345 最小チワワ問題
ユーザー mondomondo
提出日時 2019-07-31 15:32:05
言語 PHP
(8.3.4)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 31,052 KB
実行使用メモリ 31,324 KB
最終ジャッジ日時 2024-07-05 06:29:00
合計ジャッジ時間 1,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,324 KB
testcase_01 AC 35 ms
31,000 KB
testcase_02 AC 33 ms
30,792 KB
testcase_03 AC 32 ms
30,920 KB
testcase_04 AC 32 ms
30,784 KB
testcase_05 AC 32 ms
31,152 KB
testcase_06 AC 33 ms
31,108 KB
testcase_07 AC 32 ms
30,912 KB
testcase_08 AC 32 ms
31,008 KB
testcase_09 AC 33 ms
31,096 KB
testcase_10 AC 32 ms
30,908 KB
testcase_11 AC 34 ms
30,988 KB
testcase_12 AC 36 ms
30,800 KB
testcase_13 AC 35 ms
31,264 KB
testcase_14 AC 34 ms
30,992 KB
testcase_15 AC 36 ms
30,916 KB
testcase_16 AC 32 ms
30,816 KB
testcase_17 AC 32 ms
31,076 KB
testcase_18 AC 33 ms
30,812 KB
testcase_19 AC 32 ms
30,940 KB
testcase_20 AC 31 ms
30,964 KB
testcase_21 AC 31 ms
31,024 KB
testcase_22 AC 33 ms
30,796 KB
testcase_23 AC 32 ms
31,124 KB
testcase_24 AC 32 ms
30,864 KB
testcase_25 AC 33 ms
31,236 KB
testcase_26 AC 32 ms
31,044 KB
testcase_27 AC 32 ms
30,776 KB
testcase_28 AC 32 ms
31,004 KB
testcase_29 AC 32 ms
30,956 KB
testcase_30 AC 32 ms
30,844 KB
testcase_31 AC 32 ms
30,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$S = trim(fgets(STDIN));
$ans = 200;
for($i = 0; $i < strlen($S); $i++) {
  if(substr($S, $i, 1) == 'c') {
    $count = 0;
    for($j = $i + 1; $j < strlen($S); $j++) {
      if(substr($S, $j, 1) == 'w') {
        $count++;
        if($count == 2) {
          $ans = min($ans, $j - $i + 1);
          break;
        }
      }
    }
  }
}
if($ans == 200) $ans = -1;
print($ans);
?>
0