結果

問題 No.1816 MUL-DIV Game
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-01-21 22:13:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-05-04 13:14:34
合計ジャッジ時間 3,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 34 ms
51,584 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 45 ms
59,904 KB
testcase_10 AC 55 ms
68,608 KB
testcase_11 AC 52 ms
67,456 KB
testcase_12 AC 50 ms
65,152 KB
testcase_13 AC 100 ms
84,736 KB
testcase_14 AC 91 ms
79,488 KB
testcase_15 AC 91 ms
81,024 KB
testcase_16 AC 74 ms
76,032 KB
testcase_17 AC 111 ms
88,960 KB
testcase_18 AC 110 ms
87,424 KB
testcase_19 AC 91 ms
80,256 KB
testcase_20 AC 115 ms
88,960 KB
testcase_21 AC 83 ms
79,104 KB
testcase_22 AC 78 ms
77,568 KB
testcase_23 AC 36 ms
52,096 KB
testcase_24 AC 36 ms
52,096 KB
testcase_25 AC 120 ms
90,880 KB
testcase_26 AC 76 ms
82,944 KB
testcase_27 AC 122 ms
90,624 KB
testcase_28 AC 78 ms
82,816 KB
testcase_29 AC 129 ms
91,264 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 & 1:
    print(1)
else:
    import heapq
    x,y = heapq.heappop(a),heapq.heappop(a)
    heapq.heappush(a,x*y)
    for i in range(n//2-1):
        x = heapq.heappop(a)
        heapq.heappush(a,x)
    print(x)
0