結果

問題 No.1816 MUL-DIV Game
ユーザー ああいいああいい
提出日時 2022-01-21 22:47:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,156 KB
最終ジャッジ日時 2024-05-04 14:01:43
合計ジャッジ時間 2,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 40 ms
60,544 KB
testcase_10 AC 53 ms
69,248 KB
testcase_11 AC 52 ms
67,968 KB
testcase_12 AC 49 ms
65,664 KB
testcase_13 AC 60 ms
73,216 KB
testcase_14 AC 45 ms
66,560 KB
testcase_15 AC 49 ms
69,120 KB
testcase_16 AC 37 ms
60,288 KB
testcase_17 AC 64 ms
80,000 KB
testcase_18 AC 61 ms
79,308 KB
testcase_19 AC 47 ms
67,456 KB
testcase_20 AC 65 ms
80,128 KB
testcase_21 AC 48 ms
66,300 KB
testcase_22 AC 46 ms
65,228 KB
testcase_23 AC 37 ms
52,492 KB
testcase_24 AC 37 ms
54,136 KB
testcase_25 AC 76 ms
83,812 KB
testcase_26 AC 74 ms
82,944 KB
testcase_27 AC 73 ms
84,156 KB
testcase_28 AC 70 ms
83,328 KB
testcase_29 AC 70 ms
83,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
A.sort()
import sys
import heapq
"""
if N == 1:
    print(A[0])
    exit()
if N % 2 == 1:
    print(1)
    exit()
heapq.heapify(A)
for _ in range(N//2):
    a = heapq.heappop(A)
    b = heapq.heappop(A)
    heapq.heappush(A,a * b)
print(heapq.heappop(A))
"""
if N == 1:
    print(A[0])
elif N == 2:
    print(A[0] * A[1])
elif N % 2 == 1:
    print(1)
else:
    print(min(A[0]*A[1],A[2]))
0