結果

問題 No.2207 pCr検査
ユーザー i_am_noobi_am_noob
提出日時 2023-02-15 18:22:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 3,000 ms
コード長 988 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 200,952 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-07-18 02:39:24
合計ジャッジ時間 14,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
42,380 KB
testcase_01 AC 176 ms
42,396 KB
testcase_02 AC 269 ms
42,368 KB
testcase_03 AC 246 ms
42,496 KB
testcase_04 AC 222 ms
42,376 KB
testcase_05 AC 274 ms
42,436 KB
testcase_06 AC 208 ms
42,496 KB
testcase_07 AC 218 ms
42,368 KB
testcase_08 AC 221 ms
42,496 KB
testcase_09 AC 264 ms
42,368 KB
testcase_10 AC 209 ms
42,368 KB
testcase_11 AC 250 ms
42,496 KB
testcase_12 AC 304 ms
42,496 KB
testcase_13 AC 263 ms
42,496 KB
testcase_14 AC 208 ms
42,368 KB
testcase_15 AC 293 ms
42,368 KB
testcase_16 AC 250 ms
42,368 KB
testcase_17 AC 270 ms
42,428 KB
testcase_18 AC 237 ms
42,368 KB
testcase_19 AC 240 ms
42,472 KB
testcase_20 AC 237 ms
42,368 KB
testcase_21 AC 321 ms
42,368 KB
testcase_22 AC 425 ms
42,368 KB
testcase_23 AC 424 ms
42,496 KB
testcase_24 AC 204 ms
42,368 KB
testcase_25 AC 250 ms
42,444 KB
testcase_26 AC 241 ms
42,368 KB
testcase_27 AC 260 ms
42,368 KB
testcase_28 AC 297 ms
42,368 KB
testcase_29 AC 291 ms
42,496 KB
testcase_30 AC 302 ms
42,368 KB
testcase_31 AC 296 ms
42,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:32:19: warning: 'm' may be used uninitialized [-Wmaybe-uninitialized]
   32 |     for(int i=0; i<m; ++i){
      |                  ~^~
main.cpp:19:15: note: 'm' was declared here
   19 |     int res=1,m;
      |               ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=10000005,mod=998244853;
int mul(int x, int y){return ((ll)x)*y%mod;}
int Pow(int x, int y=mod-2){int res=1; for(; y; x=mul(x,x),y>>=1) if(y&1) res=mul(res,x); return res;}
int inv[maxn];

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    inv[1]=1;
    for(int i=2; i<maxn; ++i) inv[i]=mul(inv[mod%i],mod-mod/i);
    int res=1,m;
    int k; cin >> k;
    for(int i=0; i<k; ++i){
        int p,x; cin >> p >> x;
        res=mul(res,Pow(p,x));
        if(i==k-1){
            m=p;
            if(x>1){
                cout << "-1 -1\n";
                return 0;
            }
        }
    }
    for(int i=0; i<m; ++i){
        if(res==1){
            cout << m << ' ' << i << "\n";
            return 0;
        }
        res=mul(res,mul(inv[m-i],i+1));
    }
    cout << "-1 -1\n";
}
0