結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,308 KB
testcase_01 AC 45 ms
36,924 KB
testcase_02 AC 43 ms
37,108 KB
testcase_03 AC 44 ms
37,088 KB
testcase_04 AC 42 ms
36,948 KB
testcase_05 AC 42 ms
37,244 KB
testcase_06 AC 42 ms
36,988 KB
testcase_07 AC 43 ms
36,984 KB
testcase_08 AC 43 ms
37,108 KB
testcase_09 AC 91 ms
40,604 KB
testcase_10 AC 173 ms
46,336 KB
testcase_11 AC 158 ms
46,028 KB
testcase_12 AC 140 ms
45,064 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 249 ms
49,536 KB
testcase_27 WA -
testcase_28 AC 252 ms
49,492 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