結果

問題 No.702 中央値を求めよ LIMITED
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-06-15 22:36:02
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 565 bytes
コンパイル時間 4,862 ms
コンパイル使用メモリ 85,404 KB
最終ジャッジ日時 2025-01-05 13:34:30
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 675 ms
9,888 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 711 ms
9,892 KB
testcase_05 AC 698 ms
9,888 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 690 ms
9,892 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 676 ms
9,892 KB
testcase_18 TLE -
testcase_19 AC 673 ms
6,820 KB
testcase_20 TLE -
testcase_21 AC 676 ms
6,820 KB
testcase_22 AC 678 ms
6,820 KB
testcase_23 AC 676 ms
6,816 KB
testcase_24 AC 674 ms
6,816 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
typedef long long lint;
uint32_t x = 0, y = 1, z = 2, w = 3;
uint32_t generate() { 
    uint32_t t = (x^(x<<11));
    x = y;
    y = z;
    z = w;
    w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); 
    return w;
}

int main(void) {
    uint32_t seed; cin >> seed; 
    uint32_t a=0,b=0xffffffffU;
    while(b-a>1){
      x = seed;
      y=1,z=2,w=3;
      uint32_t k=(a+b)/2;
      int c=0;
      for (int i = 0; i < 10000001; i++) {
	if(generate()<=k)c++;
      }
      if(c>=5000001)b=k;
      else a=k;
    }
    cout<<b<<endl;
}
0