結果

問題 No.486 3 Straight Win(3連勝)
ユーザー DexctersuDexctersu
提出日時 2017-03-21 11:01:53
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2023-09-18 14:40:48
合計ジャッジ時間 1,705 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,884 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
7,796 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 15 ms
7,904 KB
testcase_09 WA -
testcase_10 AC 15 ms
7,804 KB
testcase_11 AC 16 ms
7,780 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 16 ms
7,768 KB
testcase_15 WA -
testcase_16 AC 15 ms
7,872 KB
testcase_17 WA -
testcase_18 AC 15 ms
7,836 KB
testcase_19 AC 15 ms
7,780 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 15 ms
7,760 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 15 ms
7,816 KB
testcase_26 AC 15 ms
7,764 KB
testcase_27 AC 15 ms
7,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
count=0
counter=0
for x in S:
    if x[0]=='O':
        count+=1
        if count==3:
            print('East')
            break
    elif x[0]=='X':
        if counter==3:
            print('West')
            break
else:
    print('NA')
0