結果

問題 No.486 3 Straight Win(3連勝)
ユーザー ichibanshiboriichibanshibori
提出日時 2017-02-24 22:33:48
言語 F#
(F# 4.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 14,310 ms
コンパイル使用メモリ 185,972 KB
実行使用メモリ 35,448 KB
最終ジャッジ日時 2024-06-26 04:01:53
合計ジャッジ時間 17,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
33,288 KB
testcase_01 AC 83 ms
33,284 KB
testcase_02 AC 82 ms
33,520 KB
testcase_03 AC 84 ms
33,284 KB
testcase_04 AC 84 ms
33,416 KB
testcase_05 AC 83 ms
33,404 KB
testcase_06 AC 82 ms
33,292 KB
testcase_07 AC 82 ms
33,152 KB
testcase_08 AC 80 ms
33,160 KB
testcase_09 AC 82 ms
35,448 KB
testcase_10 AC 82 ms
33,268 KB
testcase_11 AC 83 ms
33,416 KB
testcase_12 AC 83 ms
33,540 KB
testcase_13 AC 82 ms
33,396 KB
testcase_14 AC 84 ms
33,612 KB
testcase_15 AC 84 ms
33,160 KB
testcase_16 AC 82 ms
33,152 KB
testcase_17 AC 81 ms
33,408 KB
testcase_18 AC 82 ms
33,272 KB
testcase_19 AC 81 ms
33,516 KB
testcase_20 AC 83 ms
33,140 KB
testcase_21 AC 82 ms
33,408 KB
testcase_22 AC 83 ms
33,284 KB
testcase_23 AC 83 ms
33,200 KB
testcase_24 AC 83 ms
33,164 KB
testcase_25 AC 84 ms
33,412 KB
testcase_26 AC 82 ms
33,056 KB
testcase_27 AC 82 ms
33,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (352 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let () =
    let s = stdin.ReadLine()
    let maru = s.IndexOf("OOO")
    let batu = s.IndexOf("XXX")

    let ans =
        if maru = -1 && batu = -1 then "NA"
        elif maru = -1 then "West"
        elif batu = -1 then "East"
        elif maru < batu then "East"
        else "West"
    
    printfn "%s" ans
0