結果

問題 No.1816 MUL-DIV Game
ユーザー 👑 rin204rin204
提出日時 2022-01-23 01:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 84,436 KB
最終ジャッジ日時 2024-11-28 14:26:28
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n % 2 == 1:
    if n == 1:
        print(input())
    else:
        print(1)
    exit()
A = list(map(int, input().split()))
A.sort(reverse = True)
a = A.pop()
A[-1] *= a
print(min(A))
0