結果

問題 No.486 3 Straight Win(3連勝)
ユーザー ryusukeryusuke
提出日時 2022-02-07 23:51:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-06-22 15:32:56
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 32 ms
52,336 KB
testcase_02 AC 34 ms
52,072 KB
testcase_03 AC 37 ms
52,616 KB
testcase_04 AC 36 ms
52,820 KB
testcase_05 AC 32 ms
52,264 KB
testcase_06 AC 32 ms
51,948 KB
testcase_07 AC 31 ms
52,736 KB
testcase_08 AC 32 ms
52,348 KB
testcase_09 AC 33 ms
52,816 KB
testcase_10 AC 32 ms
52,420 KB
testcase_11 AC 32 ms
52,272 KB
testcase_12 AC 35 ms
53,148 KB
testcase_13 AC 32 ms
53,120 KB
testcase_14 AC 34 ms
52,152 KB
testcase_15 AC 32 ms
52,792 KB
testcase_16 AC 32 ms
52,488 KB
testcase_17 AC 31 ms
52,688 KB
testcase_18 AC 31 ms
52,308 KB
testcase_19 AC 31 ms
53,196 KB
testcase_20 AC 31 ms
52,136 KB
testcase_21 AC 32 ms
52,328 KB
testcase_22 AC 31 ms
52,492 KB
testcase_23 AC 30 ms
52,332 KB
testcase_24 AC 31 ms
52,256 KB
testcase_25 AC 31 ms
51,800 KB
testcase_26 AC 30 ms
52,432 KB
testcase_27 AC 30 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
for i in range(len(s) - 2):
    if s[i : i + 3] == 'OOO':
        exit(print('East'))
    if s[i : i + 3] == 'XXX':
        exit(print('West'))

print('NA')
0