結果

問題 No.2207 pCr検査
ユーザー 沙耶花沙耶花
提出日時 2023-02-03 21:46:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,338 ms / 3,000 ms
コード長 981 bytes
コンパイル時間 4,249 ms
コンパイル使用メモリ 260,728 KB
実行使用メモリ 120,628 KB
最終ジャッジ日時 2024-07-02 19:39:19
合計ジャッジ時間 30,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
120,512 KB
testcase_01 AC 286 ms
120,536 KB
testcase_02 AC 659 ms
120,448 KB
testcase_03 AC 570 ms
120,488 KB
testcase_04 AC 536 ms
120,532 KB
testcase_05 AC 881 ms
120,472 KB
testcase_06 AC 424 ms
120,532 KB
testcase_07 AC 462 ms
120,576 KB
testcase_08 AC 453 ms
120,520 KB
testcase_09 AC 733 ms
120,356 KB
testcase_10 AC 304 ms
120,540 KB
testcase_11 AC 658 ms
120,420 KB
testcase_12 AC 953 ms
120,448 KB
testcase_13 AC 678 ms
120,564 KB
testcase_14 AC 425 ms
120,472 KB
testcase_15 AC 1,026 ms
120,444 KB
testcase_16 AC 681 ms
120,576 KB
testcase_17 AC 923 ms
120,576 KB
testcase_18 AC 722 ms
120,516 KB
testcase_19 AC 561 ms
120,628 KB
testcase_20 AC 673 ms
120,404 KB
testcase_21 AC 1,125 ms
120,552 KB
testcase_22 AC 1,331 ms
120,424 KB
testcase_23 AC 1,338 ms
120,448 KB
testcase_24 AC 427 ms
120,536 KB
testcase_25 AC 635 ms
120,500 KB
testcase_26 AC 612 ms
120,476 KB
testcase_27 AC 880 ms
120,516 KB
testcase_28 AC 1,172 ms
120,532 KB
testcase_29 AC 1,165 ms
120,448 KB
testcase_30 AC 1,153 ms
120,576 KB
testcase_31 AC 1,164 ms
120,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

constexpr int M = 10000001;
int main(){
	
	vector<int> mp(M,-1);
	for(int i=2;i<M;i++){
		if(mp[i]!=-1)continue;
		for(int j=i;j<M;j+=i)mp[j] = i;
	}
	vector<int> goal(M,0),cur(M,0);
	int ok = M;
	int m = 0;
	{
		int k;
		cin>>k;
		rep(i,k){
			int p,e;
			cin>>p>>e;
			goal[p] = e;
			ok--;
			m = max(m,p);
		}
	}
	
	rep(i,m/2){
		{
			int c = m-i;
			while(c!=1){
				int p = mp[c];
				if(cur[p]==goal[p])ok--;
				cur[p]++;
				if(cur[p]==goal[p])ok++;
				c /= p;
			}
		}
		{
			int c = i+1;
			while(c!=1){
				int p = mp[c];
				if(cur[p]==goal[p])ok--;
				cur[p]--;
				if(cur[p]==goal[p])ok++;
				c /= p;
			}
		}	
		if(ok==M){
			cout<<m<<' '<<i+1<<endl;
			return 0;
		}
	}
	cout<<-1<<' '<<-1<<endl;
	
	return 0;
}
0