結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー ぴろずぴろず
提出日時 2015-07-31 22:43:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 75,040 KB
実行使用メモリ 58,392 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-16 20:55:10
合計ジャッジ時間 10,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
57,576 KB
testcase_01 AC 179 ms
58,068 KB
testcase_02 AC 187 ms
57,760 KB
testcase_03 AC 185 ms
56,716 KB
testcase_04 AC 187 ms
57,352 KB
testcase_05 AC 196 ms
57,624 KB
testcase_06 AC 179 ms
58,160 KB
testcase_07 AC 178 ms
58,080 KB
testcase_08 AC 177 ms
57,528 KB
testcase_09 AC 191 ms
58,392 KB
testcase_10 AC 187 ms
57,552 KB
testcase_11 AC 195 ms
57,760 KB
testcase_12 AC 177 ms
57,372 KB
testcase_13 AC 190 ms
57,780 KB
testcase_14 AC 194 ms
56,832 KB
testcase_15 AC 195 ms
58,068 KB
testcase_16 AC 191 ms
57,848 KB
testcase_17 AC 184 ms
57,452 KB
testcase_18 AC 193 ms
58,208 KB
testcase_19 AC 179 ms
57,288 KB
testcase_20 AC 180 ms
58,156 KB
testcase_21 AC 184 ms
57,608 KB
testcase_22 AC 183 ms
57,752 KB
testcase_23 AC 182 ms
57,984 KB
testcase_24 AC 195 ms
58,080 KB
testcase_25 AC 182 ms
57,964 KB
testcase_26 AC 180 ms
58,000 KB
testcase_27 AC 191 ms
58,028 KB
testcase_28 AC 193 ms
57,604 KB
testcase_29 AC 182 ms
57,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no257;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int x = 0;
		int k = sc.nextInt();
		if ((n - 1) % (k + 1) == 0) {
			System.out.println(0);
			x = sc.nextInt();
			if (x >= n) {
				return;
			}
		}
		while(true) {
			System.out.println(n - 1 - (n - 1 - x) / (k + 1) * (k + 1));
			x = sc.nextInt();
			if (x >= n) {
				break;
			}
		}
	}

}
0