結果

問題 No.2828 Remainder Game
ユーザー 沙耶花沙耶花
提出日時 2024-08-02 22:06:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,003 bytes
コンパイル時間 4,556 ms
コンパイル使用メモリ 263,924 KB
実行使用メモリ 25,464 KB
平均クエリ数 58.00
最終ジャッジ日時 2024-08-02 22:06:46
合計ジャッジ時間 10,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n;

unsigned long xor128() {
	static unsigned long x=123456789, y=362436069, z=521288629, w=88675123;
	unsigned long t=(x^(x<<11));
	x=y; y=z; z=w;
	return (w=(w^(w>>19))^(t^(t>>8)));
}
int main(){
	
	cin>>n;
	vector<long long> p = {2,3,7,11,13};
	
	vector<long long> s(5);
	rep(i,5){
		vector<int> r(p[i]);
		rep(j,p[i]){
			r[j] = j;
		}
		rep(_,100){
			int a = xor128()%p[i];
			int b = xor128()%p[i];
			swap(r[a],r[b]);
		}
		int rem = 5;
		int sum = 0;
		rep(j,p[i]-1){
			if(rem==0)break;
			cout<<p[i]<<' '<<1<<endl;
			cout<<r[j]<<endl;
			int ret;
			cin>>ret;
			rem -= ret;
			sum += r[j]*ret;
		}
		sum += r[p[i]-1]*rem;
		s.push_back(sum%p[i]);
	}
	auto ans = crt(s,p);
	cout<<0<<' '<<1<<endl;
	cout<<ans.first<<endl;
    return 0;
}
0