結果

問題 No.531 エヌスクミ島の平和協定
ユーザー syuki791
提出日時 2017-07-08 20:36:36
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-10-06 19:56:03
合計ジャッジ時間 7,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 31 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #


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%m==0){
				System.out.println(n/m);
			}else{
			
			System.out.println(-1);
			}
		}
		
		
	}

}
0