結果

問題 No.531 エヌスクミ島の平和協定
ユーザー yumechiyumechi
提出日時 2021-03-01 01:44:16
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 11,546 ms
コンパイル使用メモリ 254,052 KB
実行使用メモリ 63,648 KB
最終ジャッジ日時 2024-10-03 00:41:19
合計ジャッジ時間 47,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 936 ms
63,184 KB
testcase_01 AC 931 ms
63,472 KB
testcase_02 AC 965 ms
63,428 KB
testcase_03 AC 940 ms
62,988 KB
testcase_04 WA -
testcase_05 AC 940 ms
63,392 KB
testcase_06 WA -
testcase_07 AC 953 ms
63,208 KB
testcase_08 AC 939 ms
63,348 KB
testcase_09 AC 938 ms
63,204 KB
testcase_10 AC 951 ms
63,304 KB
testcase_11 AC 954 ms
63,304 KB
testcase_12 AC 958 ms
63,064 KB
testcase_13 AC 961 ms
63,496 KB
testcase_14 AC 945 ms
63,648 KB
testcase_15 AC 978 ms
63,248 KB
testcase_16 WA -
testcase_17 AC 945 ms
63,292 KB
testcase_18 AC 947 ms
63,212 KB
testcase_19 AC 956 ms
63,552 KB
testcase_20 AC 953 ms
63,288 KB
testcase_21 AC 958 ms
63,416 KB
testcase_22 AC 942 ms
63,532 KB
testcase_23 AC 935 ms
63,372 KB
testcase_24 AC 937 ms
63,368 KB
testcase_25 AC 947 ms
63,240 KB
testcase_26 AC 950 ms
63,448 KB
testcase_27 AC 940 ms
63,400 KB
testcase_28 AC 968 ms
63,228 KB
testcase_29 AC 940 ms
63,512 KB
testcase_30 AC 944 ms
63,184 KB
testcase_31 AC 992 ms
63,300 KB
testcase_32 AC 945 ms
63,184 KB
testcase_33 AC 947 ms
63,540 KB
testcase_34 AC 935 ms
63,380 KB
testcase_35 AC 946 ms
63,200 KB
testcase_36 AC 948 ms
63,252 KB
testcase_37 AC 944 ms
63,168 KB
testcase_38 AC 943 ms
63,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  val m = sc.nextInt

  def solve(n: Int, m: Int): Int = {
    if (m >= n) return 1
    if (n % 2 == 0) return if (m > n/2) 2 else -1
    -1
  }
  println(solve(n, m))
}
0