結果

問題 No.264 じゃんけん
ユーザー face4face4
提出日時 2019-12-07 18:54:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 289 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 12,080 ms
コンパイル使用メモリ 430,036 KB
実行使用メモリ 50,964 KB
最終ジャッジ日時 2024-06-07 18:48:55
合計ジャッジ時間 15,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
50,792 KB
testcase_01 AC 286 ms
50,780 KB
testcase_02 AC 272 ms
50,756 KB
testcase_03 AC 268 ms
50,608 KB
testcase_04 AC 278 ms
50,964 KB
testcase_05 AC 288 ms
50,696 KB
testcase_06 AC 289 ms
50,876 KB
testcase_07 AC 284 ms
50,684 KB
testcase_08 AC 278 ms
50,692 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