結果

問題 No.486 3 Straight Win(3連勝)
ユーザー Dexctersu
提出日時 2017-07-09 16:24:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-06-26 04:30:27
合計ジャッジ時間 1,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
east_count=0
west_count=0
ans="NA"
for i in s:
    if i=="O":
        east_count+=1
        west_count=0
        if 3<=east_count:
            ans="East"
            break
    if i=="X":
        west_count+=1
        east_count=0
        if 3<=west_count:
            ans="West"
            break
print(ans)
0