結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー kano_townkano_town
提出日時 2015-07-31 22:49:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 3,261 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 70,792 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-16 20:55:45
合計ジャッジ時間 10,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
69,968 KB
testcase_01 AC 180 ms
70,224 KB
testcase_02 AC 164 ms
69,588 KB
testcase_03 AC 172 ms
69,700 KB
testcase_04 AC 162 ms
69,816 KB
testcase_05 AC 160 ms
69,252 KB
testcase_06 AC 179 ms
70,492 KB
testcase_07 AC 164 ms
69,880 KB
testcase_08 AC 174 ms
70,236 KB
testcase_09 AC 179 ms
70,600 KB
testcase_10 AC 165 ms
69,592 KB
testcase_11 AC 162 ms
69,912 KB
testcase_12 AC 170 ms
70,792 KB
testcase_13 AC 161 ms
69,484 KB
testcase_14 AC 164 ms
69,968 KB
testcase_15 AC 176 ms
70,060 KB
testcase_16 AC 177 ms
70,700 KB
testcase_17 AC 161 ms
69,368 KB
testcase_18 AC 165 ms
69,548 KB
testcase_19 AC 164 ms
69,632 KB
testcase_20 AC 166 ms
69,984 KB
testcase_21 AC 162 ms
69,796 KB
testcase_22 AC 162 ms
69,560 KB
testcase_23 AC 162 ms
69,756 KB
testcase_24 AC 178 ms
70,528 KB
testcase_25 AC 180 ms
69,956 KB
testcase_26 AC 165 ms
69,396 KB
testcase_27 AC 173 ms
69,648 KB
testcase_28 AC 165 ms
69,304 KB
testcase_29 AC 178 ms
69,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder257 {

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