結果

問題 No.702 中央値を求めよ LIMITED
ユーザー tailstails
提出日時 2018-06-16 00:29:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 763 ms / 5,000 ms
コード長 252 bytes
コンパイル時間 774 ms
コンパイル使用メモリ 59,224 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-11-07 06:03:14
合計ジャッジ時間 22,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
30,592 KB
testcase_01 AC 756 ms
30,592 KB
testcase_02 AC 755 ms
30,592 KB
testcase_03 AC 762 ms
30,592 KB
testcase_04 AC 755 ms
30,720 KB
testcase_05 AC 755 ms
30,720 KB
testcase_06 AC 754 ms
30,592 KB
testcase_07 AC 755 ms
30,720 KB
testcase_08 AC 749 ms
30,592 KB
testcase_09 AC 749 ms
30,592 KB
testcase_10 AC 756 ms
30,720 KB
testcase_11 AC 759 ms
30,592 KB
testcase_12 AC 763 ms
30,592 KB
testcase_13 AC 752 ms
30,720 KB
testcase_14 AC 750 ms
30,720 KB
testcase_15 AC 757 ms
30,720 KB
testcase_16 AC 753 ms
30,720 KB
testcase_17 AC 762 ms
30,592 KB
testcase_18 AC 762 ms
30,720 KB
testcase_19 AC 750 ms
30,592 KB
testcase_20 AC 758 ms
30,720 KB
testcase_21 AC 757 ms
30,720 KB
testcase_22 AC 749 ms
30,592 KB
testcase_23 AC 756 ms
30,592 KB
testcase_24 AC 763 ms
30,720 KB
testcase_25 AC 755 ms
30,720 KB
testcase_26 AC 749 ms
30,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    5 | main(){
      | ^~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
uint32_t i,j,t,x,y=1,z=2,w=3,a[7500000];
main(){
	cin>>x;
	for(i=10000001;i--;){
		t=x^x<<11,x=y;y=z;z=w;w^=w>>19^t^t>>8; 
		w<3e9?a[j++]=w:0;
	}
	sort(a,a+j);
	cout << a[5000000] << endl;
}
0