結果

問題 No.2828 Remainder Game
ユーザー umezoumezo
提出日時 2024-08-02 23:00:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 246,264 KB
実行使用メモリ 25,208 KB
平均クエリ数 22.00
最終ジャッジ日時 2024-08-02 23:00:26
合計ジャッジ時間 5,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  ll ans=0;
  for(int i=9;i>=0;i--){
    V<int> A;
    for(int j=1;j<=1000;j++){
      if((j&(1<<i))>0) A.push_back(j);
    }
    int k=A.size();
    cout<<10000<<" "<<k<<endl;
    rep(j,k){
      if(j) cout<<" ";
      cout<<A[j];
    }
    cout<<endl;
    int c;
    cin>>c;
    ans+=c*(1<<i);
  }
  cout<<0<<" "<<1<<endl;
  cout<<ans<<endl;
    
  return 0;
}
0