結果
問題 | No.934 Explosive energy drink |
ユーザー | はまやんはまやん |
提出日時 | 2019-11-29 23:08:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 341 ms / 2,000 ms |
コード長 | 2,107 bytes |
コンパイル時間 | 2,061 ms |
コンパイル使用メモリ | 203,124 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 709.58 |
最終ジャッジ日時 | 2024-07-16 18:46:51 |
合計ジャッジ時間 | 6,749 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,892 KB |
testcase_01 | AC | 338 ms
24,836 KB |
testcase_02 | AC | 22 ms
25,220 KB |
testcase_03 | AC | 171 ms
24,964 KB |
testcase_04 | AC | 335 ms
24,836 KB |
testcase_05 | AC | 22 ms
24,964 KB |
testcase_06 | AC | 22 ms
25,208 KB |
testcase_07 | AC | 22 ms
24,964 KB |
testcase_08 | AC | 23 ms
24,964 KB |
testcase_09 | AC | 22 ms
24,964 KB |
testcase_10 | AC | 23 ms
24,836 KB |
testcase_11 | AC | 23 ms
25,208 KB |
testcase_12 | AC | 25 ms
25,220 KB |
testcase_13 | AC | 27 ms
24,836 KB |
testcase_14 | AC | 27 ms
24,964 KB |
testcase_15 | AC | 109 ms
25,076 KB |
testcase_16 | AC | 39 ms
25,220 KB |
testcase_17 | AC | 62 ms
24,964 KB |
testcase_18 | AC | 63 ms
24,964 KB |
testcase_19 | AC | 127 ms
24,964 KB |
testcase_20 | AC | 214 ms
25,208 KB |
testcase_21 | AC | 233 ms
25,220 KB |
testcase_22 | AC | 327 ms
24,964 KB |
testcase_23 | AC | 341 ms
24,836 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int N; //--------------------------------------------------------------------------------------------------- int ask(int without) { int M = N - 1; vector<int> v; rep(i, 1, N + 1) if (i != without) v.push_back(i); printf("? %d\n", M); rep(i, 0, M) { if (i) printf(" "); printf("%d", v[i]); } printf("\n"); fflush(stdout); int ans; cin >> ans; return ans; } void answer(vector<int> ans) { int K = ans.size(); printf("! %d\n", K); rep(i, 0, K) { if (i) printf(" "); printf("%d", ans[i]); } printf("\n"); fflush(stdout); } //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; vector<int> ans; rep(i, 1, N + 1) { auto res = ask(i); if (res == 0) ans.push_back(i); } answer(ans); }