結果
問題 | No.345 最小チワワ問題 |
ユーザー | peta727 |
提出日時 | 2016-05-12 13:48:15 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,625 bytes |
コンパイル時間 | 1,515 ms |
コンパイル使用メモリ | 32,404 KB |
実行使用メモリ | 32,532 KB |
最終ジャッジ日時 | 2024-10-05 13:56:54 |
合計ジャッジ時間 | 2,548 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
32,472 KB |
testcase_01 | AC | 36 ms
32,396 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 35 ms
32,020 KB |
testcase_05 | AC | 35 ms
32,404 KB |
testcase_06 | WA | - |
testcase_07 | AC | 37 ms
32,404 KB |
testcase_08 | WA | - |
testcase_09 | AC | 37 ms
32,272 KB |
testcase_10 | AC | 36 ms
32,528 KB |
testcase_11 | AC | 37 ms
32,276 KB |
testcase_12 | AC | 37 ms
32,272 KB |
testcase_13 | WA | - |
testcase_14 | AC | 36 ms
32,400 KB |
testcase_15 | AC | 35 ms
32,400 KB |
testcase_16 | AC | 36 ms
32,528 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 33 ms
32,272 KB |
testcase_20 | AC | 34 ms
32,400 KB |
testcase_21 | AC | 34 ms
32,276 KB |
testcase_22 | AC | 34 ms
32,272 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 35 ms
32,400 KB |
testcase_30 | AC | 34 ms
32,532 KB |
testcase_31 | AC | 36 ms
32,272 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php /* * Input/Output用のクラス */ namespace Coder; class IO { private $raw = []; private $count = 0; private $pointer = 0; /* * デリミタで区切った文字列を取得する * @param string * @return string */ public function next($del = ' ') { if ($this->pointer >= $this->count) { $this->raw = explode("{$del}", trim(fgets(STDIN))); $this->count = count($this->raw); $this->pointer = 0; } $result = $this->raw[$this->pointer]; $this->pointer++; return $result; } /* * 次にまだ文字列があるかを調べる * @return bool */ public function hasNext() { return $this->pointer < $this->count; } /* * int型で文字列を取り出す * @return int */ public function nextInt($del = ' ') { return (int)$this->next($del); } /* * double型で文字列を取り出す * @return double */ public function nextDouble($del = ' ') { return (double)$this->next($del); } /* * 改行を末尾に追加して出力する * @param string */ public static function out ($str = '') { echo $str . PHP_EOL; } } $io = new IO(); $str = $io->next(); $count_w = 0; $index = 0; for($i = 0; $i < strlen($str); $i++) { if ($str[$i] == 'c') { $count_w = 0; $index = $i; } if ($str[$i] == 'w') { $count_w++; if ($count_w == 2) { $io->out($i - $index + 1); exit; } } } $io->out('-1');