結果

問題 No.88 次はどっちだ
ユーザー wesoweeenwesoweeen
提出日時 2022-01-31 23:40:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 738 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 10,780 KB
実行使用メモリ 8,140 KB
最終ジャッジ日時 2023-09-02 02:26:49
合計ジャッジ時間 1,293 ms
ジャッジサーバーID
(参考情報)
judge16 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count
BOARD_SIZE = 8

def main() -> None:
    first_player = input().split()
    board_list = [input().split() for _ in BOARD_SIZE]
    board_flatten: str = ''.join([x for row in board_list for x in row])
    if count_tiles(board=board_flatten) % 2 == 0:
        print(*first_player)
    if count_tiles(board=board_flatten) % 2 == 1:
        print(who_is_second(first_player=first_player))

def count_tiles(board: str) -> int:
    count_b = board.count("b")
    count_w = board.count("w")
    return count_b + count_w

def who_is_second(first_player: str) -> str:
    if first_player[0] == "oda":
        return "yukiko"
    if first_player[0] == "yukiko":
        return "oda"

if __name__ == "__main__":
    main()
0