結果
| 問題 |
No.1004 サイコロの実装 (2)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-07 00:11:54 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 1,205 bytes |
| コンパイル時間 | 718 ms |
| コンパイル使用メモリ | 78,432 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-14 10:18:18 |
| 合計ジャッジ時間 | 1,598 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 38 |
ソースコード
#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);
bool tf = true, af = true;
unsigned int a, b, x, N;
int nowt = 0, nowa = 0;
int taka[2] = {}, ao[2] = {};
cin>>a>>b>>x>>N;
// for(int i = 1; i <= N * 2; i++){
// x = x * a + b;
// cout<<"i = "<<i<<" "<<x<<" "<<x%6+1<<" "<<nowt<<" "<<nowa<<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;
int ans1 = 0, ans2 = 0;
if(a % 2) {
if(a % 2) {
if(x % 2) {
ans1 = N / 2;
} else {
ans2 = N / 2;
}
} else {
if(x % 2) {
ans1 = ans2 = 0;
} else {
ans1 = ans2 = N / 2;
}
}
} else {
if(b % 2) {
ans1 = ans2 = 0;
} else {
ans1 = ans2 = N / 2;
}
}
cout<<ans1<<" "<<ans2<<endl;
return 0;
}