結果
問題 | No.670 log は定数 |
ユーザー | beet |
提出日時 | 2018-03-23 22:42:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 593 bytes |
コンパイル時間 | 1,682 ms |
コンパイル使用メモリ | 174,016 KB |
実行使用メモリ | 18,624 KB |
最終ジャッジ日時 | 2024-06-24 21:54:33 |
合計ジャッジ時間 | 12,111 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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; using Int = long long; //INSERT ABOVE HERE unsigned long long seed; Int next() { seed = seed ^ (seed << 13); seed = seed ^ (seed >> 7); seed = seed ^ (seed << 17); return (seed >> 33); } signed 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(); sort(a.begin(),a.end()); Int ans=0; for(Int i=0;i<q;i++){ Int x=next(); Int cnt=lower_bound(a.begin(),a.end(),x)-a.begin(); ans ^= cnt * i; } cout<<ans<<endl; }