結果
問題 | No.934 Explosive energy drink |
ユーザー | toririm_ |
提出日時 | 2019-11-29 23:54:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 354 ms / 2,000 ms |
コード長 | 732 bytes |
コンパイル時間 | 1,383 ms |
コンパイル使用メモリ | 164,820 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 709.58 |
最終ジャッジ日時 | 2024-07-16 18:54:25 |
合計ジャッジ時間 | 6,386 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
25,196 KB |
testcase_01 | AC | 354 ms
24,836 KB |
testcase_02 | AC | 26 ms
25,220 KB |
testcase_03 | AC | 178 ms
24,964 KB |
testcase_04 | AC | 350 ms
25,476 KB |
testcase_05 | AC | 24 ms
24,836 KB |
testcase_06 | AC | 23 ms
24,836 KB |
testcase_07 | AC | 24 ms
25,220 KB |
testcase_08 | AC | 23 ms
25,092 KB |
testcase_09 | AC | 23 ms
24,964 KB |
testcase_10 | AC | 26 ms
25,092 KB |
testcase_11 | AC | 27 ms
25,220 KB |
testcase_12 | AC | 29 ms
25,064 KB |
testcase_13 | AC | 31 ms
25,476 KB |
testcase_14 | AC | 31 ms
25,220 KB |
testcase_15 | AC | 114 ms
24,568 KB |
testcase_16 | AC | 44 ms
25,220 KB |
testcase_17 | AC | 68 ms
25,220 KB |
testcase_18 | AC | 71 ms
25,220 KB |
testcase_19 | AC | 138 ms
24,836 KB |
testcase_20 | AC | 227 ms
24,580 KB |
testcase_21 | AC | 244 ms
24,836 KB |
testcase_22 | AC | 349 ms
25,204 KB |
testcase_23 | AC | 351 ms
24,964 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:27:18: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘std::set<long long int>::size_type’ {aka ‘long unsigned int’} [-Wformat=] 27 | printf("! %lld\n",ans.size()); | ~~~^ ~~~~~~~~~~ | | | | | std::set<long long int>::size_type {aka long unsigned int} | long long int | %ld
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(vec) vec.begin(),vec.end() #define MOD 1000000007 #define int long long signed main(){ int n;cin>>n; set<int> ans; rep(i,n){ printf("? %lld\n",n-1); int j=1; if(i==0){ printf("2"); j=2; }else printf("1"); for(;j<n;j++){ if(i==j)continue; printf(" %lld",j+1); } cout<<endl; int u; cin>>u; if(!u)ans.insert(i+1); } printf("! %lld\n",ans.size()); int e=0; for(auto a:ans){ if(e==0)printf("%lld",a); else printf(" %lld",a); e=1; } cout<<endl; }