結果

問題 No.1816 MUL-DIV Game
ユーザー nok0nok0
提出日時 2022-01-16 23:03:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 84,260 KB
最終ジャッジ日時 2024-11-23 12:37:35
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,892 KB
testcase_01 AC 39 ms
52,872 KB
testcase_02 AC 37 ms
52,104 KB
testcase_03 AC 37 ms
52,048 KB
testcase_04 AC 35 ms
52,888 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,624 KB
testcase_07 AC 39 ms
53,304 KB
testcase_08 AC 36 ms
52,748 KB
testcase_09 AC 40 ms
61,192 KB
testcase_10 AC 53 ms
69,132 KB
testcase_11 AC 53 ms
69,152 KB
testcase_12 AC 48 ms
65,952 KB
testcase_13 AC 60 ms
73,784 KB
testcase_14 AC 50 ms
67,340 KB
testcase_15 AC 55 ms
69,640 KB
testcase_16 AC 41 ms
60,772 KB
testcase_17 AC 69 ms
80,052 KB
testcase_18 AC 67 ms
78,232 KB
testcase_19 AC 57 ms
68,868 KB
testcase_20 AC 70 ms
80,240 KB
testcase_21 AC 48 ms
66,196 KB
testcase_22 AC 46 ms
64,704 KB
testcase_23 AC 35 ms
52,240 KB
testcase_24 AC 35 ms
53,260 KB
testcase_25 AC 76 ms
83,576 KB
testcase_26 AC 76 ms
83,992 KB
testcase_27 AC 75 ms
84,260 KB
testcase_28 AC 76 ms
83,320 KB
testcase_29 AC 75 ms
83,280 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 % 2 == 0:
    print(min(a[0] * a[1], a[2]))
else:
    print(1)
0