結果

問題 No.1816 MUL-DIV Game
ユーザー wolgnikwolgnik
提出日時 2022-01-21 22:00:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 84,268 KB
最終ジャッジ日時 2024-05-04 12:53:51
合計ジャッジ時間 2,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,076 KB
testcase_01 AC 38 ms
52,568 KB
testcase_02 AC 39 ms
52,712 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 38 ms
52,376 KB
testcase_05 AC 38 ms
52,376 KB
testcase_06 AC 38 ms
51,944 KB
testcase_07 AC 40 ms
52,672 KB
testcase_08 AC 38 ms
52,340 KB
testcase_09 AC 43 ms
59,836 KB
testcase_10 AC 50 ms
68,940 KB
testcase_11 AC 49 ms
67,644 KB
testcase_12 AC 47 ms
66,240 KB
testcase_13 AC 64 ms
73,276 KB
testcase_14 AC 54 ms
67,112 KB
testcase_15 AC 57 ms
69,752 KB
testcase_16 AC 43 ms
61,156 KB
testcase_17 AC 72 ms
80,796 KB
testcase_18 AC 70 ms
77,840 KB
testcase_19 AC 54 ms
68,144 KB
testcase_20 AC 73 ms
79,748 KB
testcase_21 AC 53 ms
65,480 KB
testcase_22 AC 49 ms
63,948 KB
testcase_23 AC 38 ms
52,544 KB
testcase_24 AC 38 ms
52,136 KB
testcase_25 AC 79 ms
84,268 KB
testcase_26 AC 61 ms
81,116 KB
testcase_27 AC 78 ms
83,252 KB
testcase_28 AC 61 ms
82,228 KB
testcase_29 AC 78 ms
83,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))

if N >= 3:
  if N & 1: print(1)
  else:
    a.sort()
    a.append(a[0] * a[1])
    a = a[2: ]
    a.sort()
    print(a[0])

else:
  res = 1
  for x in a: res *= x
  print(res)
0