結果

問題 No.1816 MUL-DIV Game
ユーザー ks2mks2m
提出日時 2022-01-21 22:03:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 50,636 KB
最終ジャッジ日時 2024-05-04 13:00:18
合計ジャッジ時間 15,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,320 KB
testcase_01 AC 130 ms
41,428 KB
testcase_02 AC 130 ms
41,360 KB
testcase_03 AC 130 ms
41,288 KB
testcase_04 AC 131 ms
41,352 KB
testcase_05 AC 118 ms
40,536 KB
testcase_06 AC 117 ms
40,188 KB
testcase_07 AC 138 ms
41,420 KB
testcase_08 AC 135 ms
41,552 KB
testcase_09 AC 296 ms
47,860 KB
testcase_10 AC 554 ms
48,208 KB
testcase_11 AC 500 ms
48,584 KB
testcase_12 AC 464 ms
48,168 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 692 ms
50,636 KB
testcase_27 WA -
testcase_28 AC 703 ms
48,816 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		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();
		}
		sc.close();

		Arrays.sort(a);
		if (n == 1) {
			System.out.println(a[0]);
		} else if (n == 2) {
			System.out.println((long) a[0] * a[1]);
		} else if (n % 2 == 1) {
			System.out.println(1);
		} else {
			System.out.println(a[n / 2]);
		}
	}
}
0