結果

問題 No.142 単なる配列の操作に関する実装問題
ユーザー koyoprokoyopro
提出日時 2015-02-03 00:35:27
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,247 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 71,440 KB
実行使用メモリ 23,540 KB
最終ジャッジ日時 2023-09-05 11:10:10
合計ジャッジ時間 11,476 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<vector>
#include <array>
#include <algorithm>
#include <queue>
#include <numeric>
#include <map>

using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) //printf(__VA_ARGS__)

typedef pair<int, int> pos;
int pos::*x = &pos::first;
int pos::*y = &pos::second;

int dxy[] = {0, 1, 0, -1, 0};

/*================================*/

signed main()
{
    int N,S,X,Y,Z,Q;
    cin >> N >> S >> X >> Y >> Z >> Q;
    
    int A[N+1];
    A[0] = S;
    FOR(i,1,N+1) A[i] = ((X*A[i-1]+Y)%Z);
    
    int T,U,V;
    REP(i,Q) {
        scanf("%lld %lld %lld %lld", &S, &T, &U, &V);
        RFOR(k,U,V+1) {
            A[k-1] += A[S-1 + k-U];
        }
    }
    REP(i,N){
        printf("%c", ((A[i] % 2) ? 'O' : 'E'));
    }
    printf("\n");
    
    return 0;
}
0