結果

問題 No.486 3 Straight Win(3連勝)
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-09-18 15:22:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 10,620 KB
実行使用メモリ 7,984 KB
最終ジャッジ日時 2023-09-22 16:25:14
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,792 KB
testcase_01 AC 15 ms
7,952 KB
testcase_02 AC 15 ms
7,732 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 16 ms
7,840 KB
testcase_06 AC 16 ms
7,848 KB
testcase_07 WA -
testcase_08 AC 16 ms
7,932 KB
testcase_09 WA -
testcase_10 AC 15 ms
7,804 KB
testcase_11 AC 16 ms
7,812 KB
testcase_12 WA -
testcase_13 AC 15 ms
7,812 KB
testcase_14 AC 15 ms
7,892 KB
testcase_15 AC 16 ms
7,788 KB
testcase_16 AC 15 ms
7,900 KB
testcase_17 AC 15 ms
7,808 KB
testcase_18 AC 15 ms
7,892 KB
testcase_19 AC 16 ms
7,956 KB
testcase_20 AC 15 ms
7,792 KB
testcase_21 AC 15 ms
7,984 KB
testcase_22 AC 15 ms
7,968 KB
testcase_23 WA -
testcase_24 AC 15 ms
7,788 KB
testcase_25 AC 15 ms
7,788 KB
testcase_26 AC 15 ms
7,888 KB
testcase_27 AC 15 ms
7,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.486 3 Straight Win(3連勝)
s = input()

if 'OOO' in s:
    print('East')
elif 'XXX' in s:
    print('West')
else:
    print('NA')
0