結果

問題 No.486 3 Straight Win(3連勝)
ユーザー mondomondo
提出日時 2019-07-31 10:31:50
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 3,016 ms
コンパイル使用メモリ 30,608 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-07-05 06:22:50
合計ジャッジ時間 5,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,724 KB
testcase_01 AC 40 ms
31,268 KB
testcase_02 AC 40 ms
31,472 KB
testcase_03 AC 40 ms
31,244 KB
testcase_04 AC 40 ms
31,036 KB
testcase_05 AC 40 ms
30,844 KB
testcase_06 AC 40 ms
31,024 KB
testcase_07 AC 40 ms
31,308 KB
testcase_08 AC 40 ms
31,148 KB
testcase_09 AC 41 ms
31,000 KB
testcase_10 AC 40 ms
30,976 KB
testcase_11 AC 41 ms
31,388 KB
testcase_12 AC 42 ms
31,048 KB
testcase_13 AC 41 ms
31,308 KB
testcase_14 AC 42 ms
30,912 KB
testcase_15 AC 42 ms
31,420 KB
testcase_16 AC 41 ms
31,140 KB
testcase_17 AC 40 ms
31,016 KB
testcase_18 AC 41 ms
31,132 KB
testcase_19 AC 41 ms
31,312 KB
testcase_20 AC 40 ms
31,272 KB
testcase_21 AC 40 ms
31,036 KB
testcase_22 AC 40 ms
31,004 KB
testcase_23 AC 39 ms
30,804 KB
testcase_24 AC 40 ms
30,796 KB
testcase_25 AC 40 ms
31,116 KB
testcase_26 AC 41 ms
31,076 KB
testcase_27 AC 41 ms
30,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$result =  trim(fgets(STDIN));
$e = strpos($result, 'OOO');
$w = strpos($result, "XXX");
const NUMBER = 1000;
// strposの返り値false(見つからなかったとき)
// stropsは'OOO'が見つかった位置を、 $resultの先頭からの相対位置で返す(開始位置は0
// $e、$wは数が小さいほうが勝ち
// $e,$wの結果がFalseであれば100ポイント(仮)付加
if ($e === false) {
    $e = NUMBER;
} 
if ($w === false) {
    $w = NUMBER;
}
if ($e == $w){
    echo "NA";
} elseif ($e < $w){
    echo "East";
} else {
    echo "West";
}
0