結果

問題 No.1816 MUL-DIV Game
ユーザー nok0nok0
提出日時 2022-01-16 22:40:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,676 KB
最終ジャッジ日時 2024-05-02 18:49:17
合計ジャッジ時間 2,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 29 ms
10,368 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 35 ms
11,392 KB
testcase_10 AC 54 ms
15,400 KB
testcase_11 AC 51 ms
14,928 KB
testcase_12 AC 46 ms
13,616 KB
testcase_13 AC 64 ms
17,184 KB
testcase_14 AC 48 ms
14,128 KB
testcase_15 AC 54 ms
15,260 KB
testcase_16 AC 36 ms
11,776 KB
testcase_17 AC 78 ms
19,616 KB
testcase_18 AC 76 ms
18,744 KB
testcase_19 AC 51 ms
14,924 KB
testcase_20 AC 79 ms
19,964 KB
testcase_21 AC 46 ms
13,896 KB
testcase_22 AC 42 ms
12,892 KB
testcase_23 AC 29 ms
10,368 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 88 ms
21,416 KB
testcase_26 AC 90 ms
21,552 KB
testcase_27 AC 88 ms
21,676 KB
testcase_28 AC 87 ms
21,676 KB
testcase_29 AC 88 ms
21,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.sort()
if n == 1:
    print(a[0])
elif n == 2:
    print(a[0] * a[1])
elif n % 2 == 0:
    print(min(a[0] * a[1], a[2]))
else:
    print(1)
0