結果

問題 No.88 次はどっちだ
ユーザー colognecologne
提出日時 2022-01-27 15:10:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-06-07 11:06:45
合計ジャッジ時間 1,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,428 KB
testcase_01 AC 37 ms
52,628 KB
testcase_02 AC 36 ms
52,996 KB
testcase_03 AC 37 ms
51,492 KB
testcase_04 AC 37 ms
53,560 KB
testcase_05 AC 36 ms
53,108 KB
testcase_06 AC 38 ms
52,624 KB
testcase_07 AC 38 ms
52,708 KB
testcase_08 AC 37 ms
51,824 KB
testcase_09 AC 38 ms
51,900 KB
testcase_10 AC 39 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    S = input()
    B = [input() for i in range(8)]

    c = sum(b.count('.') for b in B)

    if (c % 2 == 0) == (S == 'oda'):
        print('oda')
    else:
        print('yukiko')


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