結果

問題 No.8 N言っちゃダメゲーム
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 16:52:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 11,566 ms
コンパイル使用メモリ 434,768 KB
実行使用メモリ 52,236 KB
最終ジャッジ日時 2024-11-20 07:59:03
合計ジャッジ時間 14,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
52,076 KB
testcase_01 AC 284 ms
51,860 KB
testcase_02 AC 280 ms
51,864 KB
testcase_03 AC 292 ms
52,236 KB
testcase_04 AC 298 ms
52,088 KB
testcase_05 AC 293 ms
52,072 KB
testcase_06 AC 301 ms
52,176 KB
testcase_07 AC 294 ms
52,216 KB
testcase_08 AC 295 ms
52,140 KB
testcase_09 AC 299 ms
52,112 KB
testcase_10 AC 295 ms
52,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) { 
         ^

ソースコード

diff #

fun main(args: Array<String>) { 
  (1..readLine()!!.toInt() ).map { 
    readLine()!!.split(" ").map { x -> x.toInt() }
  }.map { x -> 
    val (n, k) = x
    if( (n-1)%(k+1) == 0 )
      println("Lose")
    else
      println("Win")
  }
}
0