結果

問題 No.1816 MUL-DIV Game
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-22 00:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 84,364 KB
最終ジャッジ日時 2024-05-04 18:30:40
合計ジャッジ時間 2,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,040 KB
testcase_01 AC 34 ms
52,628 KB
testcase_02 AC 39 ms
51,872 KB
testcase_03 AC 33 ms
52,484 KB
testcase_04 AC 33 ms
53,360 KB
testcase_05 AC 33 ms
53,572 KB
testcase_06 AC 34 ms
52,468 KB
testcase_07 AC 33 ms
53,656 KB
testcase_08 AC 33 ms
52,840 KB
testcase_09 AC 44 ms
60,644 KB
testcase_10 AC 49 ms
69,420 KB
testcase_11 AC 47 ms
69,096 KB
testcase_12 AC 45 ms
65,660 KB
testcase_13 AC 58 ms
74,856 KB
testcase_14 AC 46 ms
67,024 KB
testcase_15 AC 49 ms
69,440 KB
testcase_16 AC 37 ms
60,840 KB
testcase_17 AC 64 ms
79,788 KB
testcase_18 AC 61 ms
78,580 KB
testcase_19 AC 48 ms
68,536 KB
testcase_20 AC 63 ms
80,564 KB
testcase_21 AC 44 ms
66,300 KB
testcase_22 AC 45 ms
63,844 KB
testcase_23 AC 35 ms
52,744 KB
testcase_24 AC 34 ms
52,184 KB
testcase_25 AC 75 ms
83,140 KB
testcase_26 AC 69 ms
83,480 KB
testcase_27 AC 68 ms
83,912 KB
testcase_28 AC 70 ms
84,364 KB
testcase_29 AC 70 ms
84,064 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])
else:
    if n%2 == 1:
        print(1)
    else:
        ans = min(A[0]*A[1], A[2])
        print(ans)
0