結果
| 問題 |
No.275 中央値を求めよ
|
| コンテスト | |
| ユーザー |
core123
|
| 提出日時 | 2019-04-16 15:50:41 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 799 bytes |
| コンパイル時間 | 2,094 ms |
| コンパイル使用メモリ | 76,264 KB |
| 実行使用メモリ | 56,580 KB |
| 最終ジャッジ日時 | 2024-09-22 08:17:51 |
| 合計ジャッジ時間 | 9,700 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 9 WA * 29 |
ソースコード
import java.util.*;
import java.util.stream.*;
public class Main{
public static void main(String... args){
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int[] a=new int[n];
for(int i=0;i<n;i++){
a[i]=sc.nextInt();
}
if(n%2==0){
put(((a[n/2-1])+a[n/2])/2.0);
}else{
put(a[n/2]);
}
}
public static void print(Object object){
System.out.print(object);
}
public static void put(Object object) {
System.out.println(object);
}
public static void put(){
System.out.println();
}
public static void print(String format,Object... args){
System.out.print(String.format(format,args));
}
public static void put(String format,Object... args) {
System.out.println(String.format(format,args));
}
}
core123