結果

問題 No.1816 MUL-DIV Game
ユーザー hir355hir355
提出日時 2022-01-21 22:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,116 KB
最終ジャッジ日時 2024-05-04 13:36:47
合計ジャッジ時間 4,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 32 ms
52,608 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 33 ms
52,224 KB
testcase_09 AC 123 ms
78,624 KB
testcase_10 AC 169 ms
81,332 KB
testcase_11 AC 150 ms
81,536 KB
testcase_12 AC 153 ms
79,872 KB
testcase_13 AC 192 ms
84,480 KB
testcase_14 AC 156 ms
80,808 KB
testcase_15 AC 163 ms
81,948 KB
testcase_16 AC 121 ms
77,788 KB
testcase_17 AC 197 ms
89,472 KB
testcase_18 AC 197 ms
88,248 KB
testcase_19 AC 154 ms
81,920 KB
testcase_20 AC 212 ms
89,840 KB
testcase_21 AC 141 ms
80,184 KB
testcase_22 AC 139 ms
78,712 KB
testcase_23 AC 36 ms
52,728 KB
testcase_24 AC 35 ms
52,736 KB
testcase_25 AC 216 ms
91,904 KB
testcase_26 AC 221 ms
91,868 KB
testcase_27 AC 219 ms
91,648 KB
testcase_28 AC 227 ms
92,008 KB
testcase_29 AC 216 ms
92,116 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