結果

問題 No.88 次はどっちだ
ユーザー papinianuspapinianus
提出日時 2016-06-07 15:57:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 31,576 KB
最終ジャッジ日時 2024-10-08 17:21:03
合計ジャッジ時間 1,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,100 KB
testcase_01 AC 40 ms
31,196 KB
testcase_02 AC 40 ms
31,524 KB
testcase_03 AC 41 ms
31,512 KB
testcase_04 AC 40 ms
31,120 KB
testcase_05 AC 39 ms
31,576 KB
testcase_06 AC 41 ms
31,432 KB
testcase_07 AC 39 ms
30,952 KB
testcase_08 AC 40 ms
31,332 KB
testcase_09 AC 39 ms
31,332 KB
testcase_10 AC 41 ms
31,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$sente = trim(fgets(STDIN));
$opponent = ['yukiko'=>'oda', 'oda'=>'yukiko'];
$i = 8;
$chars = '';
while($i) {
    $chars .= str_replace('.', '', trim(fgets(STDIN)));
    $i--;
}
$which = strlen($chars) % 2;
if($which) {
    echo $opponent[$sente];
} else {
    echo $sente;
}
echo PHP_EOL;
0