結果
問題 | No.670 log は定数 |
ユーザー | te-sh |
提出日時 | 2018-04-20 10:20:39 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 2,924 ms / 4,000 ms |
コード長 | 1,012 bytes |
コンパイル時間 | 726 ms |
コンパイル使用メモリ | 104,168 KB |
実行使用メモリ | 25,568 KB |
最終ジャッジ日時 | 2024-06-13 00:49:50 |
合計ジャッジ時間 | 31,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,813 ms
23,884 KB |
testcase_01 | AC | 2,924 ms
22,472 KB |
testcase_02 | AC | 2,825 ms
22,808 KB |
testcase_03 | AC | 2,641 ms
24,608 KB |
testcase_04 | AC | 2,599 ms
25,280 KB |
testcase_05 | AC | 2,718 ms
25,568 KB |
testcase_06 | AC | 2,721 ms
21,880 KB |
testcase_07 | AC | 2,776 ms
24,428 KB |
testcase_08 | AC | 2,778 ms
23,036 KB |
testcase_09 | AC | 2,681 ms
22,304 KB |
ソースコード
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r,v);} void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);} ulong seed; int next() { seed = seed ^ (seed << 13); seed = seed ^ (seed >> 7); seed = seed ^ (seed << 17); return cast(int)(seed >> 33); } const tb = 31, ub = 19, db = tb-ub; void main() { int n, q; readV(n, q, seed); foreach (i; 0..10000) next(); auto a = new int[](n); foreach (i; 0..n) a[i] = next(); auto b = new int[][](1<<ub), c = new int[](1<<ub); foreach (ai; a) { b[ai>>db] ~= ai; ++c[ai>>db]; } auto cc = new int[](1<<ub+1); foreach (i; 0..1<<ub) cc[i+1] = cc[i]+c[i]; auto ans = 0uL; foreach (ulong i; 0..q) { auto x = next(), xi = (x>>db); ans ^= i * (cc[xi] + b[xi].count!(bi => bi < x)); } writeln(ans); }