結果
| 問題 |
No.531 エヌスクミ島の平和協定
|
| コンテスト | |
| ユーザー |
samplelpmas
|
| 提出日時 | 2017-06-27 14:16:44 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 124 ms / 2,000 ms |
| コード長 | 437 bytes |
| コンパイル時間 | 1,738 ms |
| コンパイル使用メモリ | 74,292 KB |
| 実行使用メモリ | 56,048 KB |
| 最終ジャッジ日時 | 2024-09-19 16:26:40 |
| 合計ジャッジ時間 | 7,122 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 37 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int M = sc.nextInt();
if (N <= M) {
System.out.println(1);
return;
}
if (N % 2 == 0 && N / 2 <= M) {
System.out.println(2);
} else {
System.out.println(-1);
}
}
}
samplelpmas