結果
問題 | No.2124 Guess the Permutation |
ユーザー | kotatsugame |
提出日時 | 2022-11-18 21:24:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 384 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 64,128 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-09-20 01:49:26 |
合計ジャッジ時間 | 1,570 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
25,196 KB |
testcase_01 | AC | 21 ms
25,220 KB |
testcase_02 | AC | 20 ms
25,220 KB |
testcase_03 | AC | 20 ms
24,836 KB |
testcase_04 | AC | 23 ms
24,964 KB |
testcase_05 | AC | 23 ms
25,220 KB |
testcase_06 | AC | 36 ms
25,192 KB |
testcase_07 | WA | - |
testcase_08 | AC | 50 ms
24,820 KB |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int N; int P[1000]; main() { cin>>N; int prv=N*(N+1)/2; for(int i=2;i<N;i++) { cout<<"? "<<i<<" "<<N<<endl; int t;cin>>t; P[i-1]=prv-t; prv=t; } cout<<"? "<<N-2<<" "<<N-1<<endl; int t;cin>>t; P[N-1]=t-P[N-2]; t=N*(N+1)/2; for(int i=1;i<N;i++)t-=P[i]; P[N]=t; cout<<"!"; for(int i=1;i<=N;i++)cout<<" "<<P[i]; cout<<endl; }