結果
問題 | No.1931 Fraction 2 |
ユーザー | ぷら |
提出日時 | 2022-04-29 14:41:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 216 ms / 2,000 ms |
コード長 | 3,130 bytes |
コンパイル時間 | 2,546 ms |
コンパイル使用メモリ | 217,968 KB |
実行使用メモリ | 16,084 KB |
最終ジャッジ日時 | 2024-07-06 17:16:52 |
合計ジャッジ時間 | 8,322 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
8,704 KB |
testcase_01 | AC | 5 ms
8,532 KB |
testcase_02 | AC | 5 ms
8,624 KB |
testcase_03 | AC | 6 ms
8,776 KB |
testcase_04 | AC | 6 ms
8,672 KB |
testcase_05 | AC | 6 ms
8,704 KB |
testcase_06 | AC | 6 ms
8,636 KB |
testcase_07 | AC | 5 ms
8,576 KB |
testcase_08 | AC | 5 ms
8,704 KB |
testcase_09 | AC | 6 ms
8,704 KB |
testcase_10 | AC | 5 ms
8,656 KB |
testcase_11 | AC | 6 ms
8,704 KB |
testcase_12 | AC | 5 ms
8,808 KB |
testcase_13 | AC | 43 ms
10,112 KB |
testcase_14 | AC | 137 ms
13,428 KB |
testcase_15 | AC | 64 ms
11,028 KB |
testcase_16 | AC | 15 ms
9,088 KB |
testcase_17 | AC | 21 ms
9,216 KB |
testcase_18 | AC | 194 ms
15,380 KB |
testcase_19 | AC | 185 ms
15,280 KB |
testcase_20 | AC | 184 ms
15,400 KB |
testcase_21 | AC | 185 ms
15,408 KB |
testcase_22 | AC | 185 ms
15,296 KB |
testcase_23 | AC | 185 ms
15,516 KB |
testcase_24 | AC | 183 ms
15,268 KB |
testcase_25 | AC | 184 ms
15,272 KB |
testcase_26 | AC | 184 ms
15,420 KB |
testcase_27 | AC | 181 ms
15,272 KB |
testcase_28 | AC | 209 ms
15,964 KB |
testcase_29 | AC | 215 ms
15,944 KB |
testcase_30 | AC | 209 ms
15,940 KB |
testcase_31 | AC | 213 ms
15,932 KB |
testcase_32 | AC | 211 ms
16,052 KB |
testcase_33 | AC | 208 ms
16,064 KB |
testcase_34 | AC | 211 ms
16,072 KB |
testcase_35 | AC | 209 ms
16,084 KB |
testcase_36 | AC | 216 ms
15,924 KB |
testcase_37 | AC | 215 ms
15,980 KB |
testcase_38 | AC | 5 ms
8,644 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 998244353; long long modpow(long long a,long long b) { long long ans = 1; while(b) { if(b & 1) { (ans *= a) %= mod; } (a *= a) %= mod; b /= 2; } return ans; } long long modpow(long long a,long long b,long long m) { long long ans = 1; while(b) { if(b & 1) { (ans *= a) %= m; } (a *= a) %= m; b /= 2; } return ans; } long long modinv(long long a, long long m) { long long b = m,u = 1,v = 0; while (b) { long long t = a/b; a -= t*b; u -= t*v; swap(a,b); swap(u,v); } u %= m; if (u < 0) { u += m; } return u; } struct primenumber { vector<int> spf; primenumber(int N) { init(N); } void init(int N) { spf.assign(N+1,0); for(int i = 0; i <= N; i++) { spf[i] = i; } for(int i = 2; i*i <= N; i++) { if(spf[i] == i) { for(int j = i*i; j <= N; j += i) { if(spf[j] == j) { spf[j] = i; } } } } } bool is_prime(long long n) { bool flag = true; if(n == 1) { flag = false; } for(long long i = 2; i*i <= n; i++) { if(n%i == 0) { flag = false; break; } } return flag; } map<int,int> get(int n) { map<int,int> m; while(n != 1) { m[spf[n]]++; n /= spf[n]; } return m; } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<int>A(N),B(N); for(int i = 0; i < N; i++) { cin >> A[i] >> B[i]; } primenumber zz(200000); vector<vector<pair<int,int>>>pura(200001); for(int i = 0; i < N; i++) { for(auto j:zz.get(B[i])) { pura[j.first].push_back({j.second,i}); } } long long d = 1; for(int i = 2; i <= 200000; i++) { if(pura[i].empty()) { continue; } int mx = 0; for(int j = 0; j < pura[i].size(); j++) { mx = max(mx,pura[i][j].first); } int cnt = 0; vector<long long>tmp(mx); long long gyaku = modpow(i,mx); for(int j = 0; j < pura[i].size(); j++) { tmp[mx-pura[i][j].first] += A[pura[i][j].second]*modinv(B[pura[i][j].second]/modpow(i,pura[i][j].first),gyaku); } long long sum = 0; for(int j = 0; j < mx; j++) { sum += tmp[j]; if(sum%i == 0) { sum /= i; cnt++; } else { break; } } d *= modpow(i,mx-cnt); d %= mod; } int c = 0; for(int i = 0; i < N; i++) { c += A[i]*d%mod*modpow(B[i],mod-2)%mod; if(c >= mod) { c -= mod; } } cout << c << " " << d << endl; }