結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー AreTrashAreTrash
提出日時 2018-10-12 10:14:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,698 ms / 3,000 ms
コード長 957 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 109,600 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-10-12 17:44:36
合計ジャッジ時間 11,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,681 ms
36,608 KB
testcase_01 AC 1,666 ms
36,352 KB
testcase_02 AC 1,688 ms
36,096 KB
testcase_03 AC 1,698 ms
36,480 KB
testcase_04 AC 1,675 ms
36,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace No702
{
    public class Program
    {
        public static void Main(string[] args)
        {
            const int A = 5000001;
            var seed = uint.Parse(Console.ReadLine());
            var xorShift = new XorShift(seed);
            var list = new List<uint>(A + 10);

            for (var i = 0; i < A; i++)
            {
                var gen = xorShift.Generate();
                list.Add(gen);
            }

            list.Sort();
            Console.WriteLine(list[A / 2] - list[A / 2]);
        }
    }

    public class XorShift
    {
        uint x = 0, y = 1, z = 2, w = 3;

        public XorShift(uint seed)
        {
            x = seed;
        }

        public uint Generate()
        {
            var t = x ^ (x << 11);
            x = y;
            y = z;
            z = w;
            w = w ^ (w >> 19) ^ t ^ (t >> 8);
            return w;
        }
    }
}
0