結果

問題 No.435 占い(Extra)
ユーザー chocoruskchocorusk
提出日時 2019-12-02 10:51:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 1,338 bytes
コンパイル時間 1,161 ms
コンパイル使用メモリ 111,224 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-10-08 12:28:29
合計ジャッジ時間 10,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
42,608 KB
testcase_01 AC 63 ms
42,496 KB
testcase_02 AC 62 ms
42,456 KB
testcase_03 AC 62 ms
42,496 KB
testcase_04 AC 62 ms
42,548 KB
testcase_05 AC 63 ms
42,624 KB
testcase_06 AC 65 ms
42,752 KB
testcase_07 AC 63 ms
42,616 KB
testcase_08 AC 64 ms
42,624 KB
testcase_09 AC 63 ms
42,624 KB
testcase_10 AC 65 ms
42,624 KB
testcase_11 AC 65 ms
42,612 KB
testcase_12 AC 104 ms
42,624 KB
testcase_13 AC 96 ms
42,624 KB
testcase_14 AC 88 ms
42,624 KB
testcase_15 AC 85 ms
42,624 KB
testcase_16 AC 108 ms
42,624 KB
testcase_17 AC 388 ms
42,624 KB
testcase_18 AC 104 ms
42,624 KB
testcase_19 AC 96 ms
42,496 KB
testcase_20 AC 571 ms
42,532 KB
testcase_21 AC 475 ms
42,748 KB
testcase_22 AC 398 ms
42,624 KB
testcase_23 AC 323 ms
42,600 KB
testcase_24 AC 278 ms
42,624 KB
testcase_25 AC 535 ms
42,488 KB
testcase_26 AC 569 ms
42,472 KB
testcase_27 AC 485 ms
42,624 KB
testcase_28 AC 61 ms
42,496 KB
testcase_29 AC 478 ms
42,572 KB
testcase_30 AC 572 ms
42,496 KB
testcase_31 AC 452 ms
42,496 KB
testcase_32 AC 404 ms
42,648 KB
testcase_33 AC 310 ms
42,752 KB
testcase_34 AC 384 ms
42,532 KB
testcase_35 AC 344 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
int f[10000001];
int inv[9]={0, 1, 5, 0, 7, 2, 0, 4, 8};
int main()
{
    f[0]=1;
	for(int i=1; i<=10000000; i++){
		int x=i;
		while(x%3==0){
			x/=3;
		}
		f[i]=f[i-1]*x%9;
	}
	int t;
	cin>>t;
	for(int q=0; q<t; q++){
		int n, x, a, b, m;
		cin>>n>>x>>a>>b>>m;
		int e0=0;
		int n1=n-1;
		while(n1){
			n1/=3;
			e0+=n1;
		}
		bool z=1;
		int s=0;
		for(int i=0; i<n; i++){
			int e=e0;
			int i1=i, i2=n-1-i;
			while(i1){
				i1/=3;
				e-=i1;
			}
			while(i2){
				i2/=3;
				e-=i2;
			}
			if(x%10!=0){
				z=0;
			}
			if(e==0){
				s+=(x%10)*f[n-1]*inv[f[i]]*inv[f[n-1-i]];
				s%=9;
			}else if(e==1){
				s+=(x%10)*f[n-1]*inv[f[i]]*inv[f[n-1-i]]*3;
				s%=9;
			}
			x=(x^a)+b;
			x%=m;
		}
		if(z) printf("0\n");
		else if(s==0) printf("9\n");
		else printf("%d\n", s);
	}
    return 0;
}
0