結果

問題 No.1816 MUL-DIV Game
ユーザー ああいいああいい
提出日時 2022-01-21 22:41:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,280 KB
実行使用メモリ 92,748 KB
最終ジャッジ日時 2023-08-17 07:00:08
合計ジャッジ時間 5,713 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,404 KB
testcase_01 AC 69 ms
71,684 KB
testcase_02 AC 71 ms
71,604 KB
testcase_03 AC 75 ms
71,204 KB
testcase_04 AC 76 ms
71,476 KB
testcase_05 AC 76 ms
71,452 KB
testcase_06 AC 81 ms
71,568 KB
testcase_07 AC 79 ms
71,504 KB
testcase_08 AC 77 ms
71,364 KB
testcase_09 AC 88 ms
75,892 KB
testcase_10 AC 97 ms
81,252 KB
testcase_11 AC 96 ms
80,304 KB
testcase_12 AC 90 ms
78,800 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 109 ms
91,416 KB
testcase_27 WA -
testcase_28 AC 107 ms
91,776 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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))
0