結果

問題 No.486 3 Straight Win(3連勝)
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-10 15:18:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-10-07 17:31:55
合計ジャッジ時間 2,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 35 ms
52,836 KB
testcase_02 AC 33 ms
52,616 KB
testcase_03 AC 32 ms
52,160 KB
testcase_04 AC 32 ms
51,680 KB
testcase_05 AC 32 ms
51,956 KB
testcase_06 AC 32 ms
52,924 KB
testcase_07 AC 32 ms
52,444 KB
testcase_08 AC 31 ms
51,912 KB
testcase_09 AC 33 ms
53,744 KB
testcase_10 AC 32 ms
52,148 KB
testcase_11 AC 35 ms
52,800 KB
testcase_12 AC 32 ms
52,000 KB
testcase_13 AC 33 ms
52,344 KB
testcase_14 AC 33 ms
52,264 KB
testcase_15 AC 32 ms
52,556 KB
testcase_16 AC 33 ms
52,740 KB
testcase_17 AC 33 ms
52,652 KB
testcase_18 AC 32 ms
52,112 KB
testcase_19 AC 32 ms
52,732 KB
testcase_20 AC 33 ms
52,032 KB
testcase_21 AC 31 ms
52,640 KB
testcase_22 AC 32 ms
51,440 KB
testcase_23 AC 33 ms
52,396 KB
testcase_24 AC 36 ms
51,984 KB
testcase_25 AC 35 ms
52,000 KB
testcase_26 AC 34 ms
51,504 KB
testcase_27 AC 34 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
n = len(s)
cnt = 0
cur = ''
for i in range(n):
    if s[i] != cur:
        cnt = 1
        cur = s[i]
    else:
        cnt += 1
    if cnt == 3:
        if cur == 'O':
            print('East')
        else:
            print('West')
        exit()
else:
    print('NA')
0