結果
| 問題 |
No.275 中央値を求めよ
|
| コンテスト | |
| ユーザー |
oldlevin
|
| 提出日時 | 2020-02-21 07:37:15 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 628 bytes |
| コンパイル時間 | 926 ms |
| コンパイル使用メモリ | 110,892 KB |
| 実行使用メモリ | 30,052 KB |
| 最終ジャッジ日時 | 2024-10-08 19:44:44 |
| 合計ジャッジ時間 | 3,301 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 28 WA * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using static System.Console;
public class hello{
public static void Main(){ //yukicoder No.275 中央値を求めよ
var n = int.Parse(ReadLine().Trim());
var s = ReadLine().Trim().Split(' ').Select(int.Parse).ToArray();
Array.Sort(s);
//WriteLine(string.Join(" ",s));
if(s.Length%2 == 1){
WriteLine(s[(int)(s.Length/2)]);
}else{
var i = s.Length/2;
var v = (s[i]+s[i-1])/2;
WriteLine(v);
}
}
}
oldlevin