結果

問題 No.1816 MUL-DIV Game
ユーザー tamatotamato
提出日時 2022-01-21 21:46:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 83,536 KB
最終ジャッジ日時 2024-05-04 12:28:15
合計ジャッジ時間 2,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,600 KB
testcase_01 AC 37 ms
53,152 KB
testcase_02 AC 37 ms
52,260 KB
testcase_03 AC 32 ms
53,148 KB
testcase_04 AC 33 ms
53,676 KB
testcase_05 AC 34 ms
53,152 KB
testcase_06 AC 35 ms
53,828 KB
testcase_07 AC 37 ms
53,592 KB
testcase_08 AC 36 ms
53,008 KB
testcase_09 AC 43 ms
60,536 KB
testcase_10 AC 44 ms
68,596 KB
testcase_11 AC 41 ms
67,656 KB
testcase_12 AC 41 ms
65,256 KB
testcase_13 AC 56 ms
74,888 KB
testcase_14 AC 45 ms
68,036 KB
testcase_15 AC 48 ms
70,104 KB
testcase_16 AC 38 ms
62,172 KB
testcase_17 AC 62 ms
80,220 KB
testcase_18 AC 65 ms
78,260 KB
testcase_19 AC 49 ms
67,788 KB
testcase_20 AC 63 ms
79,568 KB
testcase_21 AC 44 ms
65,564 KB
testcase_22 AC 43 ms
64,176 KB
testcase_23 AC 31 ms
53,172 KB
testcase_24 AC 31 ms
52,944 KB
testcase_25 AC 67 ms
83,144 KB
testcase_26 AC 52 ms
81,844 KB
testcase_27 AC 68 ms
83,048 KB
testcase_28 AC 59 ms
81,688 KB
testcase_29 AC 72 ms
83,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline
    
    N = int(input())
    A = list(map(int, input().split()))
    
    if N & 1:
        if N == 1:
            print(A[0])
        else:
            print(1)
    else:
        if N == 2:
            print(A[0] * A[1])
        else:
            A.sort()
            print(min(A[2], A[0] * A[1]))


if __name__ == '__main__':
    main()
0