結果

問題 No.1816 MUL-DIV Game
ユーザー hirakuhiraku
提出日時 2022-01-22 08:56:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-05-05 05:29:22
合計ジャッジ時間 5,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 136 ms
78,380 KB
testcase_10 AC 175 ms
81,328 KB
testcase_11 AC 171 ms
81,536 KB
testcase_12 AC 159 ms
79,872 KB
testcase_13 AC 192 ms
84,992 KB
testcase_14 AC 164 ms
80,640 KB
testcase_15 AC 176 ms
81,312 KB
testcase_16 AC 137 ms
77,920 KB
testcase_17 AC 209 ms
89,856 KB
testcase_18 AC 206 ms
88,064 KB
testcase_19 AC 164 ms
81,408 KB
testcase_20 AC 226 ms
89,856 KB
testcase_21 AC 154 ms
80,000 KB
testcase_22 AC 142 ms
78,592 KB
testcase_23 AC 37 ms
52,480 KB
testcase_24 AC 38 ms
52,736 KB
testcase_25 AC 238 ms
92,416 KB
testcase_26 AC 237 ms
92,032 KB
testcase_27 AC 238 ms
91,904 KB
testcase_28 AC 246 ms
92,288 KB
testcase_29 AC 247 ms
92,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(input())
a = list(map(int, input().split()))
hq = a[:]
hq2 = [-x for x in a]
heapq.heapify(hq)
heapq.heapify(hq2)
for i in range(n - 1):
    if i % 2 == 0:
        x = heapq.heappop(hq)
        y = heapq.heappop(hq)
        heapq.heappush(hq, x * y)
        heapq.heappush(hq2, -x * y)
    else:
        heapq.heappop(hq2)
        heapq.heappop(hq2)
        heapq.heappush(hq, 1)
        heapq.heappush(hq2, -1)
print(heapq.heappop(hq))
0