結果

問題 No.702 中央値を求めよ LIMITED
ユーザー kotatsugamekotatsugame
提出日時 2018-06-18 06:09:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 368 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 64,508 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 16:49:07
合計ジャッジ時間 13,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 438 ms
6,944 KB
testcase_03 AC 439 ms
6,944 KB
testcase_04 AC 438 ms
6,944 KB
testcase_05 AC 439 ms
6,944 KB
testcase_06 AC 438 ms
6,940 KB
testcase_07 AC 437 ms
6,944 KB
testcase_08 AC 441 ms
6,944 KB
testcase_09 AC 439 ms
6,944 KB
testcase_10 AC 439 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 438 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 437 ms
6,944 KB
testcase_17 AC 434 ms
6,944 KB
testcase_18 AC 435 ms
6,944 KB
testcase_19 AC 438 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 439 ms
6,944 KB
testcase_22 AC 439 ms
6,940 KB
testcase_23 AC 438 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 439 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
unsigned int m,seed,n=1e7+1,t,x,y,z,w,f=2146000000L,l=2148000000L;
main()
{
	cin>>seed;
	while(l-f>1)
	{
		m=((long)f+(long)l)/2;
		x=seed;y=1,z=2,w=3;
		int cnt=0;
		for(int i=0;i<n;i++)
		{
			t=(x^(x<<11));
			x=y,y=z,z=w;
			w=(w^(w>>19))^(t^(t>>8));
			cnt+=w<=m;
		}
		if(cnt<5000001)f=m;
		else l=m;
	}
	cout<<l<<endl;
}
0