結果

問題 No.1004 サイコロの実装 (2)
ユーザー okok
提出日時 2020-03-06 23:22:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 932 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 79,584 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-04-22 10:36:35
合計ジャッジ時間 5,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

signed main(){
	cout<<fixed<<setprecision(10);
	
	unsigned int a, b, x, N;
	// int taka0 = 0, taka1 = 0, ao0 = 0, ao1 = 0, nowt = 0, nowa = 0;
	int  nowt = 0, nowa = 0;
	int taka[2] = {}, ao[2] = {};
	// vector<unsigned int> x(1);
	
	cin>>a>>b>>x>>N;
	
	// x.resize(N * 2+1);
	
	for(int i = 1; i <= N * 2; i++){
		x = x * a + b;
		
		// cout<<"i = "<<i<<" "<<x[i]<<" "<<x[i]%6+1<<endl;
		
		if(i%2) nowt += x % 6 + 1, taka[nowt%2]++;
		else nowa += x % 6 + 1, ao[nowa%2]++;
	}
	
	cout<<min(taka[0], taka[1])<<" "<<min(ao[0], ao[1])<<endl;
	
	
	return 0;
}
0