結果

問題 No.702 中央値を求めよ LIMITED
ユーザー letrangerjpletrangerjp
提出日時 2018-06-16 00:09:02
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,508 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-05-02 09:23:08
合計ジャッジ時間 90,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,164 ms
12,672 KB
testcase_01 AC 3,169 ms
12,672 KB
testcase_02 AC 3,249 ms
12,672 KB
testcase_03 AC 3,315 ms
12,544 KB
testcase_04 AC 3,166 ms
12,672 KB
testcase_05 AC 3,136 ms
12,672 KB
testcase_06 AC 3,177 ms
12,544 KB
testcase_07 AC 3,101 ms
12,672 KB
testcase_08 AC 3,154 ms
12,672 KB
testcase_09 AC 3,182 ms
12,544 KB
testcase_10 AC 3,151 ms
12,672 KB
testcase_11 AC 3,169 ms
12,672 KB
testcase_12 AC 3,121 ms
12,544 KB
testcase_13 AC 3,145 ms
12,672 KB
testcase_14 AC 3,337 ms
12,416 KB
testcase_15 AC 3,249 ms
12,672 KB
testcase_16 AC 3,152 ms
12,672 KB
testcase_17 AC 3,508 ms
12,672 KB
testcase_18 AC 3,107 ms
12,544 KB
testcase_19 AC 3,105 ms
12,672 KB
testcase_20 AC 3,144 ms
12,672 KB
testcase_21 AC 3,109 ms
12,544 KB
testcase_22 AC 3,157 ms
12,544 KB
testcase_23 AC 3,152 ms
12,544 KB
testcase_24 AC 3,100 ms
12,672 KB
testcase_25 AC 3,130 ms
12,544 KB
testcase_26 AC 3,116 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x = 0
y = 1
z = 2
w = 3
generate = ->{
  t = (x ^ (x << 11)) & 0xffffffff
  x, y, z = y, z, w
  w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))
}

x = gets.to_i

min = 2143000000
max = 2153000000
low = high = 0
a = []
1000_0001.times{
  r = generate[]
  if r < min
    low += 1
  elsif r > max
    high += 1
  else
    a << r
  end
}
p a.sort[500_0000-low]
0