結果
| 問題 |
No.531 エヌスクミ島の平和協定
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-08 21:00:16 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 467 bytes |
| コンパイル時間 | 1,875 ms |
| コンパイル使用メモリ | 74,300 KB |
| 実行使用メモリ | 41,296 KB |
| 最終ジャッジ日時 | 2024-10-06 20:03:55 |
| 合計ジャッジ時間 | 7,334 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 31 WA * 6 |
ソースコード
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 if(n%m>=m){
System.out.println(n/m);
}else {
System.out.println(-1);
}
}
}
}