結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー ぴろずぴろず
提出日時 2015-07-31 22:41:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 433 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 70,936 KB
平均クエリ数 3.77
最終ジャッジ日時 2024-07-16 05:17:40
合計ジャッジ時間 9,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
70,036 KB
testcase_01 AC 162 ms
69,668 KB
testcase_02 AC 176 ms
70,560 KB
testcase_03 AC 162 ms
69,832 KB
testcase_04 AC 164 ms
69,476 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 176 ms
70,404 KB
testcase_08 AC 177 ms
70,600 KB
testcase_09 AC 182 ms
70,936 KB
testcase_10 AC 164 ms
69,700 KB
testcase_11 AC 175 ms
69,792 KB
testcase_12 AC 164 ms
69,248 KB
testcase_13 AC 165 ms
69,632 KB
testcase_14 AC 161 ms
69,604 KB
testcase_15 AC 170 ms
69,768 KB
testcase_16 AC 163 ms
69,892 KB
testcase_17 AC 166 ms
69,180 KB
testcase_18 AC 165 ms
69,852 KB
testcase_19 AC 163 ms
69,376 KB
testcase_20 AC 168 ms
69,636 KB
testcase_21 AC 165 ms
69,692 KB
testcase_22 AC 177 ms
70,604 KB
testcase_23 AC 173 ms
70,192 KB
testcase_24 AC 165 ms
69,700 KB
testcase_25 AC 167 ms
69,244 KB
testcase_26 AC 167 ms
69,852 KB
testcase_27 AC 164 ms
69,644 KB
testcase_28 AC 166 ms
69,508 KB
testcase_29 AC 211 ms
70,796 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();
		}
		while(true) {
			System.out.println(n - 1 - (n - 1 - x) / (k + 1) * (k + 1));
			x = sc.nextInt();
			if (x >= n) {
				break;
			}
		}
	}

}
0