結果
問題 | No.2207 pCr検査 |
ユーザー | maksim |
提出日時 | 2023-02-09 18:32:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 1,730 ms |
コンパイル使用メモリ | 171,824 KB |
実行使用メモリ | 84,232 KB |
最終ジャッジ日時 | 2024-07-06 20:21:17 |
合計ジャッジ時間 | 21,480 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
84,232 KB |
testcase_01 | AC | 102 ms
21,376 KB |
testcase_02 | AC | 1,485 ms
60,288 KB |
testcase_03 | AC | 1,244 ms
47,872 KB |
testcase_04 | AC | 981 ms
47,620 KB |
testcase_05 | AC | 2,582 ms
71,944 KB |
testcase_06 | AC | 417 ms
32,772 KB |
testcase_07 | AC | 656 ms
38,144 KB |
testcase_08 | AC | 673 ms
34,052 KB |
testcase_09 | AC | 1,787 ms
59,652 KB |
testcase_10 | AC | 149 ms
21,252 KB |
testcase_11 | AC | 1,596 ms
56,064 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int maxn=1e7+5; int cnt[maxn];bool used[maxn];vector<int> pr; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); for(int i=2;i<maxn;++i) {if(!used[i]) {pr.push_back(i);for(int j=i;j<maxn;j+=i) {used[j]=true;}}} int n;cin>>n; pair<int,int> a[n];int p=1; for(int i=0;i<n;++i) {cin>>a[i].first>>a[i].second;cnt[a[i].first]=a[i].second;p=max(p,a[i].first);} for(int i=1;i<=p-1;++i) { bool ok=true; for(int p1:pr) { if(p1>p) break; int ans=0; for(int j=p1;j<=p;j*=p1) { ans+=(p/j)-(i/j)-((p-i)/j); } ok&=(ans==cnt[p1]); if(!ok) break; } if(ok) { cout<<p<<' '<<i<<endl; return 0; } } cout<<(-1)<<' '<<(-1)<<endl; return 0; }