結果

問題 No.1047 Zero (Novice)
ユーザー face4face4
提出日時 2021-04-11 14:42:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 12,021 ms
コンパイル使用メモリ 434,400 KB
実行使用メモリ 52,060 KB
最終ジャッジ日時 2024-06-27 09:49:50
合計ジャッジ時間 18,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,664 KB
testcase_01 AC 298 ms
51,928 KB
testcase_02 AC 296 ms
51,864 KB
testcase_03 AC 297 ms
51,932 KB
testcase_04 AC 297 ms
51,744 KB
testcase_05 AC 294 ms
51,812 KB
testcase_06 AC 297 ms
52,060 KB
testcase_07 AC 299 ms
51,868 KB
testcase_08 AC 295 ms
51,848 KB
testcase_09 AC 301 ms
51,912 KB
testcase_10 AC 300 ms
51,788 KB
testcase_11 AC 300 ms
51,812 KB
testcase_12 AC 295 ms
51,872 KB
testcase_13 AC 299 ms
51,832 KB
testcase_14 AC 300 ms
51,924 KB
testcase_15 AC 292 ms
51,768 KB
testcase_16 AC 293 ms
51,744 KB
testcase_17 AC 300 ms
51,808 KB
testcase_18 AC 297 ms
51,880 KB
testcase_19 AC 294 ms
51,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val (a, b) = readLine()!!.split(" ").map{it.toInt()}
    println(if(b==0) 1 else if(a==-1) 2 else -1)
}
0