結果

問題 No.264 じゃんけん
ユーザー face4face4
提出日時 2019-12-07 18:54:09
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 396 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 12,507 ms
コンパイル使用メモリ 430,396 KB
実行使用メモリ 50,828 KB
最終ジャッジ日時 2024-12-26 03:07:49
合計ジャッジ時間 17,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
50,804 KB
testcase_01 AC 313 ms
50,804 KB
testcase_02 AC 311 ms
50,764 KB
testcase_03 AC 380 ms
50,808 KB
testcase_04 AC 388 ms
50,828 KB
testcase_05 AC 396 ms
50,792 KB
testcase_06 AC 319 ms
50,764 KB
testcase_07 AC 334 ms
50,672 KB
testcase_08 AC 302 ms
50,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val a = readLine()!!.split(' ')
    val n : Int = a[0].toInt()
    val k : Int = a[1].toInt()
    val ret = when{
        n==k -> "Drew"
        (n+1)%3==k -> "Won"
        else -> "Lost"
    }
    println(ret)
}
0