結果

問題 No.88 次はどっちだ
ユーザー cc
提出日時 2015-12-10 12:06:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 30,544 KB
実行使用メモリ 31,588 KB
最終ジャッジ日時 2024-09-15 07:28:05
合計ジャッジ時間 1,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,132 KB
testcase_01 AC 41 ms
31,264 KB
testcase_02 AC 42 ms
31,232 KB
testcase_03 AC 41 ms
31,472 KB
testcase_04 AC 41 ms
30,996 KB
testcase_05 AC 42 ms
31,588 KB
testcase_06 AC 41 ms
31,000 KB
testcase_07 AC 41 ms
31,136 KB
testcase_08 AC 41 ms
31,060 KB
testcase_09 AC 41 ms
31,280 KB
testcase_10 AC 40 ms
31,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, "%s", $first_player);
for($i=0; $i<8; $i++){
    $b[] = fscanf(STDIN, "%s");
}
$players = array('oda'=>'oda','yukiko'=>'yukiko');

$total = 0;
$black_total = 0;
$white_total = 0;
foreach($b as $val){
    $black_total += substr_count($val[0],'b');
    $white_total += substr_count($val[0],'w');
}
$total = ($black_total + $white_total);
if($total%2 === 0){
    echo $first_player;
}else{
    unset($players[$first_player]);
    echo array_shift($players);
}

echo "\n";

?>
0