結果
問題 | No.896 友達以上恋人未満 |
ユーザー | 👑 emthrm |
提出日時 | 2019-09-27 23:07:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,811 bytes |
コンパイル時間 | 1,058 ms |
コンパイル使用メモリ | 120,908 KB |
実行使用メモリ | 42,896 KB |
最終ジャッジ日時 | 2024-09-25 01:21:30 |
合計ジャッジ時間 | 6,025 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:62:15: warning: 'x' may be used uninitialized [-Wmaybe-uninitialized] 62 | x = ((x * mulX + addX + mod - 1) & (mod - 1)) + 1; | ~~^~~~~~ main.cpp:44:13: note: 'x' was declared here 44 | long long x, y; | ^
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #define _USE_MATH_DEFINES #include <cmath> #include <cstdio> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iostream> #include <iterator> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <tuple> #include <utility> #include <vector> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() const int INF = 0x3f3f3f3f; const long long LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; /*-------------------------------------------------*/ int main() { cin.tie(nullptr); ios::sync_with_stdio(false); // freopen("input.txt", "r", stdin); int m, n, mulX, addX, mulY, addY, mod; cin >> m >> n >> mulX >> addX >> mulY >> addY >> mod; vector<long long> mp(mod, 0); vector<int> X(m); REP(i, m) cin >> X[i]; long long x, y; REP(i, n) { if (i < m) { x = X[i]; cin >> y; } else { x = (x * mulX + addX) & (mod - 1); y = (y * mulY + addY) & (mod - 1); } mp[x] += y; } long long ans = 0; REP(i, m) cin >> X[i]; REP(i, n) { if (i < m) { x = X[i]; cin >> y; } else { x = ((x * mulX + addX + mod - 1) & (mod - 1)) + 1; y = ((y * mulY + addY + mod - 1) & (mod - 1)) + 1; } long long cnt = 0, mul = x * y; for (int i = x; i < mod; i += x) { if (i % mul != 0) cnt += mp[i]; } if (i < m) cout << cnt << '\n'; ans ^= cnt; } cout << ans << '\n'; return 0; }