結果
問題 | No.1004 サイコロの実装 (2) |
ユーザー |
![]() |
提出日時 | 2020-03-06 21:24:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 1,335 ms |
コンパイル使用メモリ | 113,848 KB |
最終ジャッジ日時 | 2025-01-09 04:43:53 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 3 WA * 35 |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; constexpr int inf=1e9+7; constexpr ll longinf=1LL<<60 ; constexpr ll mod=1e9+7 ; int cnt[2][2]; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int a,b,x,n; cin>>a>>b>>x>>n; int s = 0,t = 0; rep(i,n){ x = (a*x + b)&65535; s += x%6+1; cnt[0][s%2]++; x = (a*x + b)&65535; t += x%6+1; cnt[1][t%2]++; } cout<<min(cnt[0][0],cnt[0][1])<<" "<<min(cnt[1][0],cnt[1][1])<<endl; return 0; }