結果

問題 No.1816 MUL-DIV Game
ユーザー merlinmerlin
提出日時 2022-01-21 22:01:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 49,732 KB
最終ジャッジ日時 2024-11-26 00:05:04
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,060 KB
testcase_01 AC 54 ms
36,800 KB
testcase_02 AC 54 ms
37,120 KB
testcase_03 AC 53 ms
36,800 KB
testcase_04 AC 53 ms
36,652 KB
testcase_05 AC 53 ms
37,096 KB
testcase_06 AC 53 ms
37,144 KB
testcase_07 AC 53 ms
36,960 KB
testcase_08 AC 56 ms
36,812 KB
testcase_09 AC 118 ms
40,368 KB
testcase_10 AC 202 ms
47,100 KB
testcase_11 AC 195 ms
46,412 KB
testcase_12 AC 176 ms
45,188 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 271 ms
49,540 KB
testcase_27 WA -
testcase_28 AC 271 ms
49,632 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        int i,a[]=new int[n];
        String s[]=bu.readLine().split(" ");
        for(i=0;i<n;i++)
        a[i]=Integer.parseInt(s[i]);

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