結果
問題 |
No.486 3 Straight Win(3連勝)
|
ユーザー |
|
提出日時 | 2019-10-04 14:32:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 164 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-03 06:53:23 |
合計ジャッジ時間 | 1,766 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
S = input() o = S.find('OOO') x = S.find('XXX') if o < 0: o = 99 if x < 0: x = 99 if o < x: print('East') elif x < o: print('West') else: print('NA')