結果
| 問題 | 
                            No.531 エヌスクミ島の平和協定
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-07-08 21:06:54 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 373 bytes | 
| コンパイル時間 | 2,148 ms | 
| コンパイル使用メモリ | 75,572 KB | 
| 実行使用メモリ | 54,188 KB | 
| 最終ジャッジ日時 | 2024-10-06 20:04:09 | 
| 合計ジャッジ時間 | 7,391 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 WA * 1 | 
| other | AC * 35 WA * 2 | 
ソースコード
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){
				System.out.println(2);
			}else {
			System.out.println(-1);
		}
	}
}