結果

問題 No.1816 MUL-DIV Game
ユーザー puznekopuzneko
提出日時 2022-02-04 00:55:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-06-11 10:01:39
合計ジャッジ時間 3,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, *a = map(int, stdin.read().split())

if n == 1:
    print("{}".format(a[0]))
    exit()
elif n == 2:
    print("{}".format(a[0]*a[1]))
    exit()
elif n % 2 == 1:
    print("{}".format(1))
    exit()

a.sort()
ans = min(a[0]*a[1],a[2])
print("{}".format(ans))
0