結果

問題 No.1816 MUL-DIV Game
ユーザー lloyzlloyz
提出日時 2022-01-21 22:28:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 83,808 KB
最終ジャッジ日時 2024-05-04 13:37:04
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,308 KB
testcase_01 AC 32 ms
52,404 KB
testcase_02 AC 31 ms
53,416 KB
testcase_03 AC 31 ms
53,376 KB
testcase_04 AC 32 ms
53,292 KB
testcase_05 AC 32 ms
51,996 KB
testcase_06 AC 31 ms
52,696 KB
testcase_07 AC 36 ms
53,652 KB
testcase_08 AC 31 ms
52,160 KB
testcase_09 AC 38 ms
61,056 KB
testcase_10 AC 50 ms
70,280 KB
testcase_11 AC 48 ms
68,076 KB
testcase_12 AC 45 ms
65,976 KB
testcase_13 AC 55 ms
73,516 KB
testcase_14 AC 48 ms
66,852 KB
testcase_15 AC 50 ms
69,304 KB
testcase_16 AC 38 ms
61,752 KB
testcase_17 AC 62 ms
79,496 KB
testcase_18 AC 60 ms
78,260 KB
testcase_19 AC 47 ms
67,772 KB
testcase_20 AC 63 ms
80,404 KB
testcase_21 AC 45 ms
67,060 KB
testcase_22 AC 42 ms
64,064 KB
testcase_23 AC 32 ms
52,692 KB
testcase_24 AC 31 ms
53,188 KB
testcase_25 AC 69 ms
83,140 KB
testcase_26 AC 69 ms
83,808 KB
testcase_27 AC 68 ms
83,792 KB
testcase_28 AC 68 ms
83,548 KB
testcase_29 AC 71 ms
83,264 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 == 1:
    print(1)
else:
    if A[1] == 1:
        print(1)
    elif A[0] == 1:
        print(A[1])
    else:
        print(min(A[0] * A[1], A[2]))
0