結果

問題 No.2828 Remainder Game
ユーザー tnakao0123tnakao0123
提出日時 2024-08-05 15:47:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 44,416 KB
実行使用メモリ 25,208 KB
平均クエリ数 17.60
最終ジャッジ日時 2024-08-05 15:47:49
合計ジャッジ時間 3,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2828.cc:  No.2828 Remainder Game - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 1000;
const int MAX_K = 1024;

/* typedef */

/* global variables */

int rs[MAX_K];

/* subroutines */

int query(int m) {
  int k = 0;
  for (int i = m / 2; i < m; i++) rs[k++] = i;
  printf("%d %d\n", m, k);
  for (int i = 0; i < k; i++)
    printf("%d%c", rs[i], (i + 1 < k) ? ' ' : '\n');
  fflush(stdout);

  int c;
  scanf("%d", &c);
  return c;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);

  int maxm = 1;
  while (maxm <= n) maxm <<= 1;

  int sum = 0;
  for (int m = 2, bi = 1; m <= maxm; m <<= 1, bi <<= 1) {
    int c = query(m);
    sum += bi * c;
  }

  printf("0 1\n%d\n", sum); fflush(stdout);
  
  return 0;
}
0