結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2019-11-18 11:16:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,238 bytes |
コンパイル時間 | 3,202 ms |
コンパイル使用メモリ | 109,068 KB |
実行使用メモリ | 28,428 KB |
最終ジャッジ日時 | 2024-10-01 08:27:37 |
合計ジャッジ時間 | 4,760 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 29 WA * 9 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Text; using System.Linq; namespace ConsoleApp11 { class Program { static void Main(string[] args) { int tem; int N = int.Parse(Console.ReadLine()); var input = Console.ReadLine().Split(' '); int[] A = new int[N]; for(int i = 0; i < N; i++) { A[i] = int.Parse(input[i]); } for(int i = 0; i < N - 1; i++) { for(int j = i + 1; j < N; j++) { if(A[i] > A[j]) { tem = A[j]; A[j] = A[i]; A[i] = tem; } } } if(N % 2 != 0) { int j = Convert.ToInt32(Math.Round((double)N / 2)); Console.WriteLine(A[j]); } else if(N % 2 == 0) { int a = N / 2; int b = (N / 2) - 1; double d = Convert.ToDouble((A[a] + A[b]) / 2.0); d = d * 10; Console.WriteLine(Math.Truncate(d) / 10); } } } }