結果
| 問題 |
No.531 エヌスクミ島の平和協定
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-08 21:12:09 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 136 ms / 2,000 ms |
| コード長 | 385 bytes |
| コンパイル時間 | 2,112 ms |
| コンパイル使用メモリ | 74,460 KB |
| 実行使用メモリ | 54,352 KB |
| 最終ジャッジ日時 | 2024-09-19 16:28:47 |
| 合計ジャッジ時間 | 8,408 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 37 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
String[] str = s.nextLine().split(" ");
int n = Integer.parseInt(str[0]);
int m =Integer.parseInt(str[1]);
if(m>=n){
System.out.println(1);
}else if(n/2<=m && n%2 == 0){
System.out.println(2);
}else {
System.out.println(-1);
}
}
}