結果

問題 No.702 中央値を求めよ LIMITED
ユーザー vwxyzvwxyz
提出日時 2022-06-22 05:01:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 638 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 243,444 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 07:15:01
合計ジャッジ時間 20,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 607 ms
5,248 KB
testcase_01 AC 595 ms
5,248 KB
testcase_02 AC 607 ms
5,248 KB
testcase_03 AC 595 ms
5,248 KB
testcase_04 AC 596 ms
5,248 KB
testcase_05 AC 599 ms
5,248 KB
testcase_06 AC 605 ms
5,248 KB
testcase_07 AC 611 ms
5,248 KB
testcase_08 AC 638 ms
5,248 KB
testcase_09 AC 606 ms
5,248 KB
testcase_10 AC 608 ms
5,248 KB
testcase_11 AC 611 ms
5,248 KB
testcase_12 AC 610 ms
5,248 KB
testcase_13 AC 608 ms
5,248 KB
testcase_14 AC 607 ms
5,248 KB
testcase_15 AC 616 ms
5,248 KB
testcase_16 AC 611 ms
5,248 KB
testcase_17 AC 623 ms
5,248 KB
testcase_18 AC 609 ms
5,248 KB
testcase_19 AC 614 ms
5,248 KB
testcase_20 AC 623 ms
5,248 KB
testcase_21 AC 605 ms
5,248 KB
testcase_22 AC 609 ms
5,248 KB
testcase_23 AC 608 ms
5,248 KB
testcase_24 AC 611 ms
5,248 KB
testcase_25 AC 612 ms
5,248 KB
testcase_26 AC 608 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <stdio.h>
uint32_t x,y,z,w;
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) {
    int64_t seed;cin>>seed; 
    long long ok,ng;ok=0,ng=1ll<<32;
    while(abs(ok-ng)>1){
        x=seed;y=1;z=2;w=3;
        long long mid=(ok+ng)/2;
        int cnt=0;
        for (int i = 0; i < 10000001; i++) {
            uint32_t a = generate();
            if(a<mid){
                cnt+=1;
            }
        }
        if(cnt<=5000000){
            ok=mid;
        }
        else{
            ng=mid;
        }
    }
    cout<<ok<<endl;
}
0