結果

問題 No.88 次はどっちだ
ユーザー akanayaakanaya
提出日時 2020-03-22 17:49:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 558 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,344 KB
最終ジャッジ日時 2024-06-07 07:23:33
合計ジャッジ時間 8,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
44,092 KB
testcase_01 AC 545 ms
44,088 KB
testcase_02 AC 558 ms
44,092 KB
testcase_03 AC 539 ms
44,084 KB
testcase_04 AC 534 ms
43,960 KB
testcase_05 AC 536 ms
44,212 KB
testcase_06 AC 540 ms
44,084 KB
testcase_07 AC 535 ms
44,084 KB
testcase_08 AC 536 ms
44,080 KB
testcase_09 AC 536 ms
44,344 KB
testcase_10 AC 533 ms
44,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np
import queue
import sys 

input = sys.stdin.readline
# sys.setrecursionlimit(25000)

s = input().strip()

players = ['oda', 'yukiko']
stones = 0

for i in range(8):
    row = input()

    stones += row.count('w')
    stones += row.count('b')

if s == players[0] and stones % 2 == 0:
    print(players[0])
if s == players[1] and stones % 2 == 0:
    print(players[1])
if s == players[0] and stones % 2 == 1:
    print(players[1])
if s == players[1] and stones % 2 == 1:
    print(players[0])
    
    
0