結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
24,556 KB
testcase_01 AC 68 ms
25,196 KB
testcase_02 WA -
testcase_03 AC 67 ms
24,940 KB
testcase_04 AC 66 ms
24,808 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 65 ms
24,824 KB
testcase_09 AC 65 ms
24,568 KB
testcase_10 AC 67 ms
25,208 KB
testcase_11 AC 66 ms
25,208 KB
testcase_12 AC 93 ms
24,952 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 66 ms
25,064 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 67 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

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[i] = sum%p[i];
	}
	auto ans = crt(s,p);
	cout<<0<<' '<<1<<endl;
	cout<<ans.first<<endl;
    return 0;
}
0