結果
問題 | No.3109 GCD between Permutations |
ユーザー | kotatsugame |
提出日時 | 2024-04-01 22:48:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
QLE
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 63,616 KB |
実行使用メモリ | 38,960 KB |
平均クエリ数 | 1286.62 |
最終ジャッジ日時 | 2024-09-30 22:40:27 |
合計ジャッジ時間 | 5,573 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | QLE | - |
testcase_01 | AC | 24 ms
24,836 KB |
testcase_02 | QLE | - |
testcase_03 | QLE | - |
testcase_04 | QLE | - |
testcase_05 | QLE | - |
testcase_06 | QLE | - |
testcase_07 | QLE | - |
testcase_08 | QLE | - |
testcase_09 | QLE | - |
testcase_10 | QLE | - |
testcase_11 | QLE | - |
testcase_12 | QLE | - |
testcase_13 | QLE | - |
testcase_14 | QLE | - |
testcase_15 | QLE | - |
testcase_16 | QLE | - |
testcase_17 | QLE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<iostream> #include<cassert> using namespace std; int A[1001],B[1001]; int ask(int i,int j) { cout<<"? "<<i<<" "<<j<<endl; int X;cin>>X; return X; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N;cin>>N; for(int i=1;i<=N;i++) { int mx=0; for(int j=1;j<=N;j++)mx=max(mx,ask(i,j)); A[i]=mx; } for(int j=1;j<=N;j++) { int mx=0; for(int i=1;i<=N;i++)mx=max(mx,ask(i,j)); B[j]=mx; } cout<<"!"; for(int i=1;i<=N;i++)cout<<" "<<A[i]; for(int i=1;i<=N;i++)cout<<" "<<B[i]; cout<<endl; return 0; }