結果

問題 No.1816 MUL-DIV Game
ユーザー H3PO4H3PO4
提出日時 2022-01-22 08:48:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,928 KB
最終ジャッジ日時 2024-05-05 05:21:09
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 30 ms
11,904 KB
testcase_10 AC 47 ms
15,528 KB
testcase_11 AC 43 ms
15,176 KB
testcase_12 AC 38 ms
13,996 KB
testcase_13 AC 54 ms
17,436 KB
testcase_14 AC 45 ms
14,512 KB
testcase_15 AC 52 ms
15,516 KB
testcase_16 AC 32 ms
11,904 KB
testcase_17 AC 72 ms
19,684 KB
testcase_18 AC 66 ms
19,120 KB
testcase_19 AC 46 ms
15,048 KB
testcase_20 AC 69 ms
20,220 KB
testcase_21 AC 37 ms
14,024 KB
testcase_22 AC 35 ms
13,276 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 75 ms
21,796 KB
testcase_26 AC 75 ms
21,796 KB
testcase_27 AC 75 ms
21,928 KB
testcase_28 AC 76 ms
21,800 KB
testcase_29 AC 74 ms
21,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = sorted(map(int, input().split()))
if N == 1:
    ans = A[0]
elif N == 2:
    ans = A[0] * A[1]
elif N % 2:
    ans = 1
else:
    ans = min(A[0] * A[1], A[2])
print(ans)
0