結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | koyopro |
提出日時 | 2015-02-03 00:35:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,247 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 71,844 KB |
実行使用メモリ | 24,320 KB |
最終ジャッジ日時 | 2024-06-23 06:50:26 |
合計ジャッジ時間 | 11,143 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%lld %lld %lld %lld", &S, &T, &U, &V); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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; }