結果

問題 No.2828 Remainder Game
ユーザー InTheBloomInTheBloom
提出日時 2024-08-02 21:50:45
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 86,064 KB
実行使用メモリ 25,208 KB
平均クエリ数 42.00
最終ジャッジ日時 2024-08-02 21:50:50
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
25,196 KB
testcase_01 AC 69 ms
25,196 KB
testcase_02 AC 65 ms
25,184 KB
testcase_03 AC 67 ms
25,196 KB
testcase_04 AC 64 ms
24,940 KB
testcase_05 AC 67 ms
25,208 KB
testcase_06 AC 66 ms
24,952 KB
testcase_07 AC 66 ms
24,568 KB
testcase_08 AC 91 ms
24,952 KB
testcase_09 AC 66 ms
24,568 KB
testcase_10 AC 66 ms
24,952 KB
testcase_11 AC 88 ms
24,824 KB
testcase_12 AC 75 ms
24,952 KB
testcase_13 AC 71 ms
24,568 KB
testcase_14 AC 72 ms
24,568 KB
testcase_15 AC 73 ms
24,568 KB
testcase_16 AC 71 ms
25,208 KB
testcase_17 AC 72 ms
24,824 KB
testcase_18 AC 71 ms
25,208 KB
testcase_19 AC 66 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main () {
    int N; cin >> N;

    // 2進数のbitごとに特定していけばよさそう。

    int S = 0;

    int M = 2;
    for (int i = 0; i < 10; i++) {
        { // ibit目が0
            cout << M << " " << M / 2 << "\n";
            for (int v = 0; v < M / 2; v++) {
                cout << v << (v == M / 2 - 1 ? "\n" : " ");
            }
            cout << flush;
            int C; cin >> C;
        }

        { // ibit目が1
            cout << M << " " << M / 2 << "\n";
            for (int v = M / 2; v < M; v++) {
                cout << v << (v == M - 1 ? "\n" : " ");
            }
            cout << flush;
            int C; cin >> C;

            S += C * (1 << i);
        }

        M *= 2;
    }

    cout << 0 << " " << 1 << "\n";
    cout << S << "\n";
    cout << flush;
}
0