結果
問題 | No.670 log は定数 |
ユーザー | Y17 |
提出日時 | 2019-01-05 18:16:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 162,400 KB |
実行使用メモリ | 10,652 KB |
最終ジャッジ日時 | 2024-05-03 03:00:32 |
合計ジャッジ時間 | 11,906 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; ull seed; int next() { seed = seed ^ (seed << 13); seed = seed ^ (seed >> 7); seed = seed ^ (seed << 17); return (seed >> 33); } int main() { int n, q; cin >> n >> q >> seed; for (int i = 0; i < 10000; i++) next(); vector<int> a(n); for (int i = 0; i < n; i++) a[i] = next(); ll sm = 0; sort(a.begin(), a.end()); for(int i = 0;i < q;i++){ int qq = next(); int tmp = lower_bound(a.begin(), a.end(), qq) - a.begin(); sm ^= ll(tmp) * i; } cout << sm << endl; return 0; }