結果
問題 | No.670 log は定数 |
ユーザー | ミドリムシ |
提出日時 | 2018-03-23 22:52:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 73,312 KB |
実行使用メモリ | 18,624 KB |
最終ジャッジ日時 | 2024-06-24 22:22:47 |
合計ジャッジ時間 | 11,167 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; unsigned long 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(); } long a[N]; for(int i = 0; i < N; i++){ a[i] = next(); } sort(a, a + N); long ans = 0; for(int i = 0; i < Q; i++) { int x = next(); ans ^= (lower_bound(a, a + N, x) - a) * i; } cout << ans << endl; }