結果

問題 No.702 中央値を求めよ LIMITED
ユーザー %20%20
提出日時 2018-06-16 00:15:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 199,280 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-11-07 06:02:18
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
31,104 KB
testcase_01 AC 91 ms
30,848 KB
testcase_02 AC 90 ms
31,104 KB
testcase_03 AC 90 ms
31,104 KB
testcase_04 AC 87 ms
31,232 KB
testcase_05 AC 90 ms
31,104 KB
testcase_06 AC 90 ms
31,104 KB
testcase_07 AC 90 ms
31,104 KB
testcase_08 AC 91 ms
30,976 KB
testcase_09 AC 90 ms
30,848 KB
testcase_10 AC 91 ms
31,488 KB
testcase_11 AC 91 ms
31,104 KB
testcase_12 AC 91 ms
31,360 KB
testcase_13 AC 88 ms
31,104 KB
testcase_14 AC 91 ms
31,232 KB
testcase_15 AC 90 ms
30,848 KB
testcase_16 AC 87 ms
31,104 KB
testcase_17 AC 89 ms
31,104 KB
testcase_18 AC 89 ms
31,104 KB
testcase_19 AC 89 ms
31,360 KB
testcase_20 AC 90 ms
31,104 KB
testcase_21 AC 89 ms
31,232 KB
testcase_22 AC 90 ms
31,104 KB
testcase_23 AC 89 ms
31,104 KB
testcase_24 AC 88 ms
31,104 KB
testcase_25 AC 93 ms
31,232 KB
testcase_26 AC 90 ms
30,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const uint32_t d=3900000,T=(1u<<31)-d;
uint32_t t,x,y=1,z=2,w=3,p,q[2*d],i;
main(){
	cin>>x;
	for(;i<10000001;++i){
		t=x^(x<<11);
		x=y;
		y=z;
		z=w;
		w^=(w>>19)^t^(t>>8);
		w<T?++p:w<T+2*d&&++q[w-T];
	}
	i=T-1;
	for(;p<5000001;)p+=q[++i-T];
	cout<<i;
}
0