結果

問題 No.486 3 Straight Win(3連勝)
ユーザー 310icecrystal310icecrystal
提出日時 2023-07-05 06:09:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 193 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 66,852 KB
最終ジャッジ日時 2024-07-19 00:36:32
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,500 KB
testcase_01 AC 31 ms
51,876 KB
testcase_02 AC 36 ms
51,852 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 37 ms
51,960 KB
testcase_07 RE -
testcase_08 AC 32 ms
52,608 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 33 ms
51,856 KB
testcase_14 AC 33 ms
51,928 KB
testcase_15 AC 33 ms
52,076 KB
testcase_16 RE -
testcase_17 AC 36 ms
53,024 KB
testcase_18 AC 35 ms
52,580 KB
testcase_19 AC 33 ms
52,168 KB
testcase_20 AC 34 ms
52,444 KB
testcase_21 AC 33 ms
52,480 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 33 ms
52,200 KB
testcase_25 AC 32 ms
51,564 KB
testcase_26 AC 32 ms
52,672 KB
testcase_27 AC 32 ms
51,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

E = S.find("OOO")
W = S.find("XXX")

if E == W == -1:
	print("NA")
elif E == -1:
	print("West")
elif W == -1:
	print("East")
else:
	if E < F:
		print("East")
	else:
		print("West")
0