結果
問題 | No.670 log は定数 |
ユーザー | tecchaxn |
提出日時 | 2018-03-23 22:56:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 594 bytes |
コンパイル時間 | 1,417 ms |
コンパイル使用メモリ | 163,580 KB |
実行使用メモリ | 18,488 KB |
最終ジャッジ日時 | 2024-06-24 22:32:09 |
合計ジャッジ時間 | 11,850 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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> #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) (v).begin(),(v).end() #define int long long using namespace std; using ull=unsigned long long; ull 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; REP(i,10000) next(); vector<int> a(N); REP(i,N) a[i]=next(); sort(ALL(a)); int sum=0; REP(i,Q){ int x=next(); int cnt=lower_bound(ALL(a),x)-a.begin(); sum^=cnt*i; } cout<<sum<<endl; }