結果

問題 No.531 エヌスクミ島の平和協定
ユーザー yumechiyumechi
提出日時 2021-03-01 01:44:59
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 934 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 7,720 ms
コンパイル使用メモリ 254,464 KB
実行使用メモリ 63,560 KB
最終ジャッジ日時 2024-10-03 00:42:12
合計ジャッジ時間 45,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 917 ms
63,392 KB
testcase_01 AC 912 ms
63,400 KB
testcase_02 AC 924 ms
63,360 KB
testcase_03 AC 918 ms
63,408 KB
testcase_04 AC 910 ms
63,296 KB
testcase_05 AC 911 ms
63,452 KB
testcase_06 AC 926 ms
63,504 KB
testcase_07 AC 930 ms
63,356 KB
testcase_08 AC 907 ms
63,452 KB
testcase_09 AC 916 ms
63,488 KB
testcase_10 AC 926 ms
63,400 KB
testcase_11 AC 925 ms
63,512 KB
testcase_12 AC 907 ms
63,164 KB
testcase_13 AC 906 ms
63,476 KB
testcase_14 AC 917 ms
63,416 KB
testcase_15 AC 916 ms
63,448 KB
testcase_16 AC 914 ms
63,460 KB
testcase_17 AC 900 ms
63,360 KB
testcase_18 AC 904 ms
63,460 KB
testcase_19 AC 900 ms
63,224 KB
testcase_20 AC 907 ms
63,440 KB
testcase_21 AC 909 ms
63,560 KB
testcase_22 AC 928 ms
63,464 KB
testcase_23 AC 905 ms
63,392 KB
testcase_24 AC 934 ms
63,428 KB
testcase_25 AC 910 ms
63,432 KB
testcase_26 AC 906 ms
63,228 KB
testcase_27 AC 920 ms
63,488 KB
testcase_28 AC 907 ms
63,420 KB
testcase_29 AC 894 ms
63,252 KB
testcase_30 AC 910 ms
63,224 KB
testcase_31 AC 888 ms
63,536 KB
testcase_32 AC 890 ms
63,248 KB
testcase_33 AC 920 ms
63,424 KB
testcase_34 AC 896 ms
63,444 KB
testcase_35 AC 889 ms
63,352 KB
testcase_36 AC 907 ms
63,404 KB
testcase_37 AC 897 ms
63,300 KB
testcase_38 AC 922 ms
63,272 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