結果
問題 | No.3093 Please GCD |
ユーザー | Nzt3 |
提出日時 | 2022-04-03 19:29:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 1,673 ms |
コンパイル使用メモリ | 172,556 KB |
実行使用メモリ | 25,496 KB |
平均クエリ数 | 505.00 |
最終ジャッジ日時 | 2024-11-24 01:34:13 |
合計ジャッジ時間 | 17,653 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
25,220 KB |
testcase_01 | AC | 25 ms
24,452 KB |
testcase_02 | AC | 31 ms
24,836 KB |
testcase_03 | AC | 235 ms
24,836 KB |
testcase_04 | AC | 322 ms
24,964 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 23 ms
24,452 KB |
testcase_11 | AC | 76 ms
25,208 KB |
testcase_12 | AC | 395 ms
25,220 KB |
testcase_13 | AC | 391 ms
24,836 KB |
testcase_14 | WA | - |
testcase_15 | AC | 33 ms
25,220 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 246 ms
25,220 KB |
testcase_29 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; vector<int>prime(N+1,1); vector<int>ask; for(int i=2;i<=N;i++){ if(prime[i]==0)continue; int t=i; while(t*i<=N)t*=i; ask.push_back(t); for(int j=i*i;j<=N;j+=i){ prime[j]=0; } } random_device sd; mt19937 rd(sd()); shuffle(ask.begin(),ask.end(),rd); int ans=1; for(int i=0,t;i<min(600,(int)ask.size());i++){ cout<<"? "<<ask[i]<<endl; cin>>t; ans*=t; } cout<<"! "<<ans<<'\n'; }