結果
問題 | No.1816 MUL-DIV Game |
ユーザー | koanviolin |
提出日時 | 2022-01-21 22:10:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 1,748 ms |
コンパイル使用メモリ | 74,628 KB |
実行使用メモリ | 49,988 KB |
最終ジャッジ日時 | 2024-05-04 13:10:19 |
合計ジャッジ時間 | 12,847 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
41,084 KB |
testcase_01 | AC | 106 ms
40,444 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 110 ms
41,256 KB |
testcase_07 | AC | 109 ms
41,300 KB |
testcase_08 | AC | 108 ms
41,020 KB |
testcase_09 | AC | 240 ms
47,208 KB |
testcase_10 | AC | 371 ms
46,692 KB |
testcase_11 | AC | 425 ms
48,424 KB |
testcase_12 | AC | 329 ms
47,072 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 | 477 ms
48,392 KB |
testcase_27 | WA | - |
testcase_28 | AC | 575 ms
49,676 KB |
testcase_29 | WA | - |
ソースコード
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); if (n == 2 ) System.out.println(a[0] * a[1]); else System.out.println(a[n/2]); } } }