結果

問題 No.275 中央値を求めよ
ユーザー yu_017yu_017
提出日時 2019-01-14 10:54:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 431 ms / 1,000 ms
コード長 633 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 76,772 KB
実行使用メモリ 55,252 KB
最終ジャッジ日時 2024-06-11 01:57:35
合計ジャッジ時間 13,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,052 KB
testcase_01 AC 135 ms
53,992 KB
testcase_02 AC 153 ms
54,256 KB
testcase_03 AC 134 ms
54,172 KB
testcase_04 AC 134 ms
54,280 KB
testcase_05 AC 134 ms
54,316 KB
testcase_06 AC 152 ms
54,064 KB
testcase_07 AC 246 ms
54,860 KB
testcase_08 AC 164 ms
54,232 KB
testcase_09 AC 160 ms
54,260 KB
testcase_10 AC 161 ms
54,520 KB
testcase_11 AC 135 ms
54,100 KB
testcase_12 AC 135 ms
54,004 KB
testcase_13 AC 131 ms
54,296 KB
testcase_14 AC 133 ms
54,312 KB
testcase_15 AC 431 ms
55,116 KB
testcase_16 AC 201 ms
54,680 KB
testcase_17 AC 196 ms
54,676 KB
testcase_18 AC 180 ms
54,200 KB
testcase_19 AC 242 ms
55,056 KB
testcase_20 AC 309 ms
55,236 KB
testcase_21 AC 203 ms
54,384 KB
testcase_22 AC 337 ms
55,252 KB
testcase_23 AC 206 ms
42,124 KB
testcase_24 AC 179 ms
41,944 KB
testcase_25 AC 365 ms
43,212 KB
testcase_26 AC 276 ms
43,088 KB
testcase_27 AC 295 ms
42,908 KB
testcase_28 AC 146 ms
41,712 KB
testcase_29 AC 206 ms
42,340 KB
testcase_30 AC 157 ms
41,724 KB
testcase_31 AC 338 ms
43,052 KB
testcase_32 AC 163 ms
41,496 KB
testcase_33 AC 281 ms
43,064 KB
testcase_34 AC 153 ms
41,556 KB
testcase_35 AC 256 ms
42,892 KB
testcase_36 AC 214 ms
42,156 KB
testcase_37 AC 167 ms
41,644 KB
testcase_38 AC 177 ms
42,240 KB
testcase_39 AC 184 ms
42,084 KB
testcase_40 AC 316 ms
43,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;
import java.util.Scanner;

public class A000275 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		LinkedList<Integer> a = new LinkedList<>();
		for(int i=0;i<n;i++) {
			int t = sc.nextInt();
			if(i==0) {
				a.add(t);
				continue;
			}
			if(a.get(a.size()-1)<=t) {
				a.addLast(t);
				continue;
			}
			for(int j=0;j<a.size();j++) {
				if(t<a.get(j)) {
					a.add(j, t);
					break;
				}
			}
		}
		sc.close();

		if(n%2==1) {
			System.out.println(a.get(n/2));
		}else {
			System.out.println((a.get(n/2-1)+a.get(n/2))/2f);
		}

	}

}
0