結果

問題 No.2496 LCM between Permutations
ユーザー 👑 p-adicp-adic
提出日時 2023-09-05 13:11:19
言語 cLay
(20240714-1)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 3,740 ms
コンパイル使用メモリ 183,820 KB
実行使用メモリ 25,348 KB
平均クエリ数 952.76
最終ジャッジ日時 2024-06-24 04:23:07
合計ジャッジ時間 6,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
24,812 KB
testcase_01 AC 24 ms
24,580 KB
testcase_02 AC 24 ms
24,580 KB
testcase_03 AC 24 ms
24,836 KB
testcase_04 AC 24 ms
25,220 KB
testcase_05 AC 26 ms
25,220 KB
testcase_06 AC 25 ms
25,220 KB
testcase_07 AC 26 ms
25,220 KB
testcase_08 AC 26 ms
25,348 KB
testcase_09 AC 25 ms
25,220 KB
testcase_10 AC 25 ms
24,836 KB
testcase_11 AC 25 ms
24,836 KB
testcase_12 AC 26 ms
25,220 KB
testcase_13 AC 25 ms
24,964 KB
testcase_14 AC 26 ms
24,580 KB
testcase_15 AC 30 ms
25,196 KB
testcase_16 AC 31 ms
24,812 KB
testcase_17 AC 33 ms
25,196 KB
testcase_18 AC 89 ms
25,220 KB
testcase_19 AC 68 ms
25,208 KB
testcase_20 AC 91 ms
24,836 KB
testcase_21 AC 80 ms
25,220 KB
testcase_22 AC 76 ms
24,580 KB
testcase_23 AC 103 ms
25,208 KB
testcase_24 AC 86 ms
24,580 KB
testcase_25 AC 112 ms
25,220 KB
testcase_26 AC 110 ms
25,196 KB
testcase_27 AC 111 ms
24,940 KB
testcase_28 AC 109 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//interactive
ll@N,P=N,t,Q[2],L=0,A[2][N+1];if(N<2)wt("! 1 1");else{while(!isPrime(P))P--;rep(i,1,N+1){wt("?",i,i);rd(t);if(t%P<1)Q[L++]=i;}if(L<2)Q[1]=*Q;else{wt("?",*Q,Q[1]);rd(t);if(t%P)swap(Q[0],Q[1]);}rep(n,2)rep(i,1,N+1){if(i==Q[n])t=P*P;else{wt("?",n?Q[0]:i,n?i:Q[1]);rd(t);}A[n][i]=t/P;}wtSp("!");rep(n,2)rep(i,N)wtSp(A[n][i+1]);}
0