結果

問題 No.702 中央値を求めよ LIMITED
ユーザー te-shte-sh
提出日時 2018-07-03 19:30:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 3,964 ms / 5,000 ms
コード長 815 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 104,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-13 01:22:07
合計ジャッジ時間 110,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,955 ms
6,812 KB
testcase_01 AC 3,914 ms
6,816 KB
testcase_02 AC 3,932 ms
6,944 KB
testcase_03 AC 3,903 ms
6,944 KB
testcase_04 AC 3,930 ms
6,940 KB
testcase_05 AC 3,929 ms
6,940 KB
testcase_06 AC 3,937 ms
6,940 KB
testcase_07 AC 3,964 ms
6,940 KB
testcase_08 AC 3,914 ms
6,944 KB
testcase_09 AC 3,902 ms
6,940 KB
testcase_10 AC 3,897 ms
6,940 KB
testcase_11 AC 3,938 ms
6,940 KB
testcase_12 AC 3,912 ms
6,944 KB
testcase_13 AC 3,816 ms
6,944 KB
testcase_14 AC 3,860 ms
6,940 KB
testcase_15 AC 3,863 ms
6,940 KB
testcase_16 AC 3,955 ms
6,940 KB
testcase_17 AC 3,904 ms
6,940 KB
testcase_18 AC 3,840 ms
6,944 KB
testcase_19 AC 3,841 ms
6,940 KB
testcase_20 AC 3,843 ms
6,940 KB
testcase_21 AC 3,837 ms
6,940 KB
testcase_22 AC 3,808 ms
6,940 KB
testcase_23 AC 3,832 ms
6,944 KB
testcase_24 AC 3,902 ms
6,940 KB
testcase_25 AC 3,849 ms
6,940 KB
testcase_26 AC 3,856 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}

const n = 10000001;

void main()
{
  uint seed; readV(seed);

  auto calc(uint m)
  {
    init(seed);
    auto c = 0;
    foreach (_; 0..n) {
      auto a = generate();
      if (a <= m) ++c;
    }
    return c;
  }

  auto bs = iota(uint.max).map!(m => calc(m)).assumeSorted;
  writeln(bs.lowerBound((n+1)/2).length);
}

uint x = 0, y = 1, z = 2, w = 3;

void init(uint seed)
{
  x = seed;
  y = 1;
  z = 2;
  w = 3;
}

uint generate()
{
  uint t = (x^(x<<11));
  x = y;
  y = z;
  z = w;
  w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); 
  return w;
}
0