結果
問題 | No.702 中央値を求めよ LIMITED |
ユーザー | kuuso1 |
提出日時 | 2018-06-15 23:09:21 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,658 bytes |
コンパイル時間 | 909 ms |
コンパイル使用メモリ | 115,832 KB |
実行使用メモリ | 439,240 KB |
最終ジャッジ日時 | 2024-06-30 15:22:26 |
合計ジャッジ時間 | 13,467 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ var dic = new Dictionary<uint, int>(); var rnd = new XorShiftModoki(N); for(int i=0;i<10000001;i++){ var t = rnd.Generate(); if(!dic.ContainsKey(t)) dic.Add(t,0); dic[t]++; } var l = dic.Keys.ToArray(); //Console.WriteLine(l.Length); Array.Sort(l); int tot = 0; for(int i=0;i<l.Length;i++){ tot += dic[l[i]]; //Console.WriteLine(l[i]); if(tot >= 10000001/2 + 1){ Console.WriteLine(l[i]); return; } } } uint N; public Sol(){ N = (uint) ri(); } public Sol(uint n){ N = n; } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} } class XorShiftModoki{ public uint x = 0, y = 1, z = 2, w = 3; public uint Generate() { uint t = (x^(x<<11)); x = y; y = z; z = w; w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); return w; } public XorShiftModoki(uint seed){ x = seed; } }