結果

問題 No.486 3 Straight Win(3連勝)
ユーザー deepjugglingdeepjuggling
提出日時 2022-10-08 07:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 64,956 KB
最終ジャッジ日時 2024-06-22 05:11:27
合計ジャッジ時間 2,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,260 KB
testcase_01 AC 48 ms
64,724 KB
testcase_02 AC 49 ms
63,928 KB
testcase_03 AC 48 ms
63,344 KB
testcase_04 AC 47 ms
64,048 KB
testcase_05 AC 49 ms
64,000 KB
testcase_06 AC 48 ms
63,280 KB
testcase_07 AC 48 ms
63,572 KB
testcase_08 AC 53 ms
63,148 KB
testcase_09 AC 49 ms
63,776 KB
testcase_10 AC 50 ms
63,492 KB
testcase_11 AC 49 ms
63,364 KB
testcase_12 AC 50 ms
64,140 KB
testcase_13 AC 47 ms
63,556 KB
testcase_14 AC 48 ms
63,632 KB
testcase_15 AC 48 ms
64,796 KB
testcase_16 AC 47 ms
63,020 KB
testcase_17 AC 47 ms
64,956 KB
testcase_18 AC 47 ms
63,068 KB
testcase_19 AC 52 ms
64,112 KB
testcase_20 AC 52 ms
64,864 KB
testcase_21 AC 50 ms
63,516 KB
testcase_22 AC 47 ms
63,420 KB
testcase_23 AC 48 ms
64,408 KB
testcase_24 AC 50 ms
64,436 KB
testcase_25 AC 50 ms
64,872 KB
testcase_26 AC 49 ms
63,748 KB
testcase_27 AC 52 ms
64,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
s = input()
if re.search(r'OOO',s) and re.search(r'XXX',s):
    m = re.search(r'OOO',s)
    n = re.search(r'XXX',s)
    if m.start() > n.start():
        print("West")
    else:
        print("East")
elif re.search(r'OOO',s):
    print("East")
elif re.search(r'XXX',s):
    print("West")
else:
    print("NA")
0