結果

問題 No.486 3 Straight Win(3連勝)
ユーザー matriematrie
提出日時 2020-11-26 07:14:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,820 KB
最終ジャッジ日時 2024-07-23 20:41:36
合計ジャッジ時間 17,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
43,820 KB
testcase_01 AC 505 ms
43,696 KB
testcase_02 AC 503 ms
43,176 KB
testcase_03 AC 511 ms
43,688 KB
testcase_04 AC 505 ms
43,688 KB
testcase_05 AC 507 ms
43,564 KB
testcase_06 AC 502 ms
43,564 KB
testcase_07 AC 508 ms
43,564 KB
testcase_08 AC 506 ms
43,436 KB
testcase_09 AC 508 ms
43,280 KB
testcase_10 AC 504 ms
43,308 KB
testcase_11 AC 517 ms
43,680 KB
testcase_12 AC 499 ms
43,540 KB
testcase_13 AC 508 ms
43,688 KB
testcase_14 AC 505 ms
43,688 KB
testcase_15 AC 506 ms
43,688 KB
testcase_16 AC 516 ms
43,696 KB
testcase_17 AC 505 ms
43,564 KB
testcase_18 AC 517 ms
43,556 KB
testcase_19 AC 515 ms
43,688 KB
testcase_20 AC 515 ms
43,680 KB
testcase_21 AC 513 ms
43,304 KB
testcase_22 AC 520 ms
43,440 KB
testcase_23 AC 512 ms
43,564 KB
testcase_24 AC 511 ms
43,428 KB
testcase_25 AC 511 ms
43,564 KB
testcase_26 AC 508 ms
43,180 KB
testcase_27 AC 504 ms
43,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
s = input()
E,W = s.find("OOO")%101, s.find("XXX")%101
print(("East","NA","West")[np.sign(E-W)+1])
0