結果

問題 No.1129 Rating じゃんけん
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:56:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 10,064 ms
コンパイル使用メモリ 439,512 KB
実行使用メモリ 51,856 KB
最終ジャッジ日時 2024-06-11 09:53:21
合計ジャッジ時間 16,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
51,684 KB
testcase_01 AC 268 ms
51,696 KB
testcase_02 AC 276 ms
51,836 KB
testcase_03 AC 272 ms
51,544 KB
testcase_04 AC 265 ms
51,708 KB
testcase_05 AC 274 ms
51,644 KB
testcase_06 AC 269 ms
51,784 KB
testcase_07 AC 265 ms
51,604 KB
testcase_08 AC 264 ms
51,556 KB
testcase_09 AC 265 ms
51,692 KB
testcase_10 AC 263 ms
51,668 KB
testcase_11 AC 263 ms
51,752 KB
testcase_12 AC 271 ms
51,808 KB
testcase_13 AC 275 ms
51,524 KB
testcase_14 AC 279 ms
51,676 KB
testcase_15 AC 264 ms
51,636 KB
testcase_16 AC 267 ms
51,856 KB
testcase_17 AC 264 ms
51,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (a,b,c,d) = readLine()!!.split(" ").map { it.toInt() }
    val p1 = Player(a,b)
    val p2 = Player(c,d)
    val ans = if(p1.isDraw(p2)) {
        "Draw"
    } else if(p1.isWin(p2)) {
        "null"
    } else {
        "tRue"
    }
    println(ans)
}

class Player(val rating:Int, val hand:Int) {
    fun isDraw(other:Player):Boolean {
        return rating == other.rating && hand == other.hand
    }
    fun isWin(other:Player):Boolean {
        if(rating == other.rating) {
            return (hand+1)%3 == other.hand
        }
        return rating > other.rating
    }
}
0