結果

問題 No.486 3 Straight Win(3連勝)
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-04 07:59:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 11,260 ms
コンパイル使用メモリ 430,816 KB
実行使用メモリ 51,012 KB
最終ジャッジ日時 2024-11-20 07:51:12
合計ジャッジ時間 21,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
50,996 KB
testcase_01 AC 310 ms
50,820 KB
testcase_02 AC 310 ms
50,796 KB
testcase_03 AC 312 ms
50,944 KB
testcase_04 AC 314 ms
51,012 KB
testcase_05 AC 313 ms
50,620 KB
testcase_06 AC 310 ms
50,708 KB
testcase_07 AC 312 ms
50,880 KB
testcase_08 AC 305 ms
50,728 KB
testcase_09 AC 306 ms
50,804 KB
testcase_10 AC 315 ms
50,892 KB
testcase_11 AC 306 ms
50,988 KB
testcase_12 AC 306 ms
50,868 KB
testcase_13 AC 309 ms
50,704 KB
testcase_14 AC 302 ms
50,700 KB
testcase_15 AC 303 ms
50,700 KB
testcase_16 AC 306 ms
50,712 KB
testcase_17 AC 307 ms
50,700 KB
testcase_18 AC 303 ms
50,816 KB
testcase_19 AC 303 ms
50,948 KB
testcase_20 AC 306 ms
50,700 KB
testcase_21 AC 309 ms
50,784 KB
testcase_22 AC 309 ms
50,836 KB
testcase_23 AC 306 ms
50,800 KB
testcase_24 AC 307 ms
50,840 KB
testcase_25 AC 305 ms
50,952 KB
testcase_26 AC 305 ms
50,872 KB
testcase_27 AC 304 ms
50,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val text = readLine()!!
  val o    = text.indexOf("OOO")
  val x    = text.indexOf("XXX")
  if( o > -1 && x > -1 ) { 
    if( o > x ) { 
      println("West")
    } else { 
      println("East")
    }   
  } else if( o > -1 || x > -1) {
    if( o > -1 ) { 
      println("East")
    } else {
      println("West")
    }   
  } else {
    println("NA")
  }
}
0