結果

問題 No.1816 MUL-DIV Game
ユーザー koanviolinkoanviolin
提出日時 2022-01-21 21:58:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 49,536 KB
最終ジャッジ日時 2024-05-04 12:51:22
合計ジャッジ時間 15,702 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
41,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 274 ms
47,324 KB
testcase_10 AC 513 ms
48,912 KB
testcase_11 AC 483 ms
48,404 KB
testcase_12 AC 432 ms
48,000 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 651 ms
49,044 KB
testcase_27 WA -
testcase_28 AC 640 ms
49,008 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;
/*
                    2 3  4  5 6 7
        (4 5 6 6 7) (2  5 6 7 12)(2 3 6 7 20) (2 3 4 5 42)



                (4 5 6 6 7)
      1







 2 3 4 5

 2 7 5

 6 5 4

 5 4 5
 4

 2 3 9
 2 1
 2

 */
public class Main {
    public static void main(String[] argv){
        Scanner sc = new Scanner(new BufferedInputStream(System.in));
        int n = sc.nextInt();
        long[] a= new long[n];
        for(int i = 0 ; i < n ; i++){
            a[i] = sc.nextLong();
        }
        if (n % 2 == 1) {
            System.out.println(1);
        } else {
            Arrays.sort(a);
            System.out.println(a[n/2]);
        }
    }
}
0