結果

問題 No.88 次はどっちだ
ユーザー 綾地寧々綾地寧々
提出日時 2015-06-15 13:11:57
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 310 bytes
コンパイル時間 2,901 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-07-06 20:52:30
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,200 KB
testcase_01 AC 42 ms
31,400 KB
testcase_02 AC 41 ms
31,084 KB
testcase_03 AC 42 ms
31,132 KB
testcase_04 AC 42 ms
31,328 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
31,468 KB
testcase_08 AC 41 ms
31,176 KB
testcase_09 AC 42 ms
31,012 KB
testcase_10 AC 42 ms
31,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
define("FIELD_SIZE", 8*8);
$name = array("oda", "yukiko");
$first_player = array_search(trim(fgets(STDIN)), $name);
$dot_count = 0;
for ($i=0; $i<8; $i++) {
	$count = count_chars(trim(fgets(STDIN)), 1);
	$dot_count += $count[ord('.')];
}
echo $name[(FIELD_SIZE-4-$dot_count+$first_player) % 2] .PHP_EOL;
0