結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-15 01:32:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 2,387 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 67,860 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-17 00:45:05
合計ジャッジ時間 6,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
66,884 KB
testcase_01 AC 103 ms
67,380 KB
testcase_02 AC 99 ms
67,268 KB
testcase_03 AC 101 ms
67,416 KB
testcase_04 AC 105 ms
67,012 KB
testcase_05 AC 101 ms
67,860 KB
testcase_06 AC 103 ms
66,844 KB
testcase_07 AC 101 ms
67,016 KB
testcase_08 AC 105 ms
67,220 KB
testcase_09 AC 102 ms
66,444 KB
testcase_10 AC 100 ms
67,420 KB
testcase_11 AC 103 ms
67,416 KB
testcase_12 AC 102 ms
67,132 KB
testcase_13 AC 101 ms
67,140 KB
testcase_14 AC 103 ms
67,128 KB
testcase_15 AC 102 ms
67,172 KB
testcase_16 AC 104 ms
66,812 KB
testcase_17 AC 102 ms
67,148 KB
testcase_18 AC 100 ms
67,192 KB
testcase_19 AC 101 ms
67,124 KB
testcase_20 AC 103 ms
66,888 KB
testcase_21 AC 100 ms
67,780 KB
testcase_22 AC 101 ms
67,164 KB
testcase_23 AC 100 ms
67,452 KB
testcase_24 AC 99 ms
67,416 KB
testcase_25 AC 101 ms
66,816 KB
testcase_26 AC 104 ms
66,988 KB
testcase_27 AC 102 ms
67,128 KB
testcase_28 AC 99 ms
66,992 KB
testcase_29 AC 102 ms
67,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int n = ni();
        int k = ni();

        if ((n - 1) % (k + 1) == 0) {
            out.println(0);
        } else {
            out.println((n - 1) % (k + 1));
        }
        out.flush();

        while (true) {
            int b = ni();
            if (b >= n) return;

            out.println(b + (n - 1 - b) % (k + 1));
            out.flush();
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    class INA {
        int[][] a;

        INA(int n, int m) throws IOException {
            this(n, m, -1);
        }

        INA(int n, int m, int t) throws IOException {
            a = new int[m][n];

            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    a[j][i] = ni() + t;
                }
            }
        }

        int[] get(int i) {
            return a[i - 1];
        }
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0