結果

問題 No.1816 MUL-DIV Game
ユーザー koanviolinkoanviolin
提出日時 2022-01-21 21:59:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 51,160 KB
最終ジャッジ日時 2024-05-04 12:53:16
合計ジャッジ時間 13,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
41,604 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 244 ms
47,268 KB
testcase_10 AC 438 ms
48,764 KB
testcase_11 AC 410 ms
48,824 KB
testcase_12 AC 325 ms
49,108 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 532 ms
49,016 KB
testcase_27 WA -
testcase_28 AC 529 ms
49,064 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-1]);
        }
    }
}
0