結果

問題 No.643 Two Operations No.2
ユーザー 💕💖💞💕💖💞
提出日時 2018-04-06 20:42:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 11,257 ms
コンパイル使用メモリ 434,128 KB
実行使用メモリ 57,028 KB
最終ジャッジ日時 2024-11-20 15:40:27
合計ジャッジ時間 16,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
56,964 KB
testcase_01 AC 315 ms
56,768 KB
testcase_02 AC 320 ms
56,884 KB
testcase_03 AC 317 ms
57,008 KB
testcase_04 AC 317 ms
56,876 KB
testcase_05 AC 316 ms
56,948 KB
testcase_06 AC 315 ms
56,856 KB
testcase_07 AC 319 ms
56,848 KB
testcase_08 AC 314 ms
56,956 KB
testcase_09 AC 317 ms
56,880 KB
testcase_10 AC 318 ms
57,028 KB
testcase_11 AC 316 ms
56,856 KB
testcase_12 AC 315 ms
56,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args:Array<String> ) {
          ^

ソースコード

diff #

fun main( args:Array<String> ) {
  val (a, b) = readLine()!!.split(" ").map{it.toInt()}
  when {
    a == b -> "0"
    a == 0 -> "2"
    b == 0 -> "1"
    a == -b -> "3"
    else -> "-1"
  }.let(::println)
}
0