結果

問題 No.531 エヌスクミ島の平和協定
ユーザー Amanita2016Amanita2016
提出日時 2017-06-27 21:11:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 643 bytes
コンパイル時間 4,066 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 55,664 KB
最終ジャッジ日時 2024-10-05 12:18:46
合計ジャッジ時間 8,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,368 KB
testcase_01 AC 104 ms
41,392 KB
testcase_02 AC 113 ms
41,212 KB
testcase_03 AC 113 ms
41,188 KB
testcase_04 AC 108 ms
41,340 KB
testcase_05 AC 109 ms
41,516 KB
testcase_06 AC 114 ms
41,260 KB
testcase_07 AC 96 ms
41,108 KB
testcase_08 AC 98 ms
41,240 KB
testcase_09 AC 109 ms
41,560 KB
testcase_10 WA -
testcase_11 AC 109 ms
41,024 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 110 ms
41,344 KB
testcase_15 WA -
testcase_16 AC 93 ms
39,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		@SuppressWarnings("resource")
		Scanner sc =  new Scanner(System.in);
		String moment = sc.nextLine();
		String[] spl = moment.split(" ");
		int animal = Integer.parseInt(spl[0]);
		int boat = Integer.parseInt(spl[1]);
		if(animal < 3 || boat < 3){
			System.out.println(-1);
			return;
		}
		int numDay = -1;
		for(int i = boat ; i > 2 ; i--){
			if((animal % i) != 2){
				numDay = animal / i;
				if((animal % i) != 0){
					numDay++;
				}
				break;
			}
		}
		System.out.println(numDay);
	}

}
0