結果

問題 No.1047 Zero (Novice)
ユーザー rutilicusrutilicus
提出日時 2021-02-21 23:25:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 11,185 ms
コンパイル使用メモリ 433,068 KB
実行使用メモリ 56,940 KB
最終ジャッジ日時 2024-09-19 20:07:58
合計ジャッジ時間 17,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
56,756 KB
testcase_01 AC 277 ms
56,696 KB
testcase_02 AC 270 ms
56,692 KB
testcase_03 AC 267 ms
56,888 KB
testcase_04 AC 277 ms
56,700 KB
testcase_05 AC 274 ms
56,748 KB
testcase_06 AC 280 ms
56,720 KB
testcase_07 AC 271 ms
56,940 KB
testcase_08 AC 278 ms
56,840 KB
testcase_09 AC 274 ms
56,728 KB
testcase_10 AC 268 ms
56,892 KB
testcase_11 AC 295 ms
56,900 KB
testcase_12 AC 275 ms
56,848 KB
testcase_13 AC 269 ms
56,832 KB
testcase_14 AC 270 ms
56,724 KB
testcase_15 AC 276 ms
56,796 KB
testcase_16 AC 276 ms
56,716 KB
testcase_17 AC 273 ms
56,780 KB
testcase_18 AC 267 ms
56,692 KB
testcase_19 AC 275 ms
56,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val (a, b) = readInputLine().split(" ").map { it.toLong() }

    if (b == 0L) {
        builder.appendLine(1)
    } else {
        builder.appendLine(
            when(a) {
                -1L -> 2
                else -> -1
            }
        )
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0