結果

問題 No.1816 MUL-DIV Game
ユーザー MineMine
提出日時 2022-01-29 23:01:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,828 KB
最終ジャッジ日時 2024-06-10 22:09:26
合計ジャッジ時間 2,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 29 ms
11,904 KB
testcase_10 AC 46 ms
15,524 KB
testcase_11 AC 43 ms
15,052 KB
testcase_12 AC 38 ms
14,000 KB
testcase_13 AC 59 ms
17,312 KB
testcase_14 AC 39 ms
14,512 KB
testcase_15 AC 46 ms
15,516 KB
testcase_16 AC 32 ms
12,032 KB
testcase_17 AC 72 ms
19,744 KB
testcase_18 AC 64 ms
19,100 KB
testcase_19 AC 45 ms
15,028 KB
testcase_20 AC 69 ms
20,216 KB
testcase_21 AC 39 ms
14,152 KB
testcase_22 AC 36 ms
13,276 KB
testcase_23 AC 24 ms
10,624 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 79 ms
21,828 KB
testcase_26 AC 80 ms
21,796 KB
testcase_27 AC 73 ms
21,812 KB
testcase_28 AC 75 ms
21,800 KB
testcase_29 AC 77 ms
21,804 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 == 1:
    print(1)
else:
    print(min(a[2], a[0]*a[1]))
0