結果

問題 No.264 じゃんけん
ユーザー javyjavy
提出日時 2015-11-02 21:43:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 10,337 ms
コンパイル使用メモリ 425,396 KB
実行使用メモリ 56,876 KB
最終ジャッジ日時 2024-11-19 14:47:20
合計ジャッジ時間 13,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,700 KB
testcase_01 AC 312 ms
56,692 KB
testcase_02 AC 310 ms
56,876 KB
testcase_03 AC 298 ms
56,840 KB
testcase_04 AC 305 ms
56,732 KB
testcase_05 AC 309 ms
56,620 KB
testcase_06 AC 300 ms
56,744 KB
testcase_07 AC 302 ms
56,832 KB
testcase_08 AC 296 ms
56,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

/**
 * Created by hichikawa on 2015/11/01.
 */

fun main(args: Array<String>) {
    val str = readLine() as String
    val strArray = str.split(" ")
    val numA = strArray[0].toInt()
    val numB = strArray[1].toInt()
    when ((numB+3-numA) % 3) {
        0 -> println("Drew")
        1 -> println("Won")
        2 -> println("Lost")
    }
}
0