結果

問題 No.486 3 Straight Win(3連勝)
ユーザー HagianHagian
提出日時 2021-06-11 03:21:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 10,536 KB
実行使用メモリ 8,116 KB
最終ジャッジ日時 2023-08-20 14:02:06
合計ジャッジ時間 2,496 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,948 KB
testcase_01 AC 17 ms
7,920 KB
testcase_02 AC 14 ms
7,952 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 13 ms
7,864 KB
testcase_06 AC 14 ms
7,896 KB
testcase_07 WA -
testcase_08 AC 13 ms
7,984 KB
testcase_09 WA -
testcase_10 AC 13 ms
8,116 KB
testcase_11 AC 13 ms
8,064 KB
testcase_12 WA -
testcase_13 AC 14 ms
7,968 KB
testcase_14 AC 14 ms
7,820 KB
testcase_15 AC 13 ms
7,944 KB
testcase_16 AC 14 ms
7,864 KB
testcase_17 AC 13 ms
7,716 KB
testcase_18 AC 14 ms
7,924 KB
testcase_19 AC 14 ms
7,920 KB
testcase_20 AC 14 ms
7,896 KB
testcase_21 AC 13 ms
7,968 KB
testcase_22 AC 13 ms
8,024 KB
testcase_23 WA -
testcase_24 AC 13 ms
7,836 KB
testcase_25 AC 13 ms
7,752 KB
testcase_26 AC 13 ms
7,884 KB
testcase_27 AC 13 ms
7,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = str(input().rstrip())
if "OOO" in S:
    print("East")
    exit()
if "XXX" in S:
    print("West")
    exit()
print("NA")
0