結果

問題 No.702 中央値を求めよ LIMITED
ユーザー aru aruaru aru
提出日時 2020-11-23 23:03:45
言語 Go
(1.22.1)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 11,834 ms
コンパイル使用メモリ 237,580 KB
実行使用メモリ 19,688 KB
最終ジャッジ日時 2024-05-02 10:04:33
合計ジャッジ時間 20,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
16,852 KB
testcase_01 AC 333 ms
16,852 KB
testcase_02 AC 325 ms
16,896 KB
testcase_03 AC 325 ms
16,848 KB
testcase_04 AC 326 ms
16,896 KB
testcase_05 AC 326 ms
16,896 KB
testcase_06 AC 321 ms
16,848 KB
testcase_07 AC 329 ms
16,896 KB
testcase_08 AC 323 ms
16,856 KB
testcase_09 AC 319 ms
16,896 KB
testcase_10 AC 330 ms
16,852 KB
testcase_11 AC 315 ms
16,848 KB
testcase_12 AC 321 ms
16,896 KB
testcase_13 AC 331 ms
16,896 KB
testcase_14 AC 332 ms
16,852 KB
testcase_15 AC 331 ms
19,688 KB
testcase_16 AC 320 ms
16,896 KB
testcase_17 AC 323 ms
16,856 KB
testcase_18 AC 327 ms
16,896 KB
testcase_19 AC 320 ms
16,848 KB
testcase_20 AC 324 ms
16,896 KB
testcase_21 AC 328 ms
16,896 KB
testcase_22 AC 327 ms
16,852 KB
testcase_23 AC 338 ms
16,896 KB
testcase_24 AC 334 ms
16,896 KB
testcase_25 AC 316 ms
16,896 KB
testcase_26 AC 325 ms
19,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

var x, y, z, w uint32 = 0, 1, 2, 3

func generate() uint32 {
	t := (x ^ (x << 11))
	x = y
	y = z
	z = w
	w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))
	return w
}

const size = 10000001

func main() {
	// this template is new version.
	// use getI(), getS(), getInts(), getF()
	var seed int
	fmt.Scanf("%d", &seed)
	x = uint32(seed)
	a := make([]uint32, 0)
	l, r := 0, 0
	for i := 0; i < size; i++ {
		w = generate()
		if w < 0x70000000 {
			l++
		} else if w < 0x90000000 {
			a = append(a, w)
		} else {
			r++
		}
	}
	sort.Slice(a, func(i, j int) bool {
		return a[i] < a[j]
	})
	// fmt.Println(len(a), l, r, l+r+len(a))
	fmt.Println(a[size/2-l])
	//	fmt.Println(a[size/2])
}
0