結果

問題 No.1816 MUL-DIV Game
ユーザー warabi0906warabi0906
提出日時 2023-05-09 21:12:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 85,144 KB
最終ジャッジ日時 2024-05-04 17:20:14
合計ジャッジ時間 2,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,112 KB
testcase_01 AC 33 ms
52,208 KB
testcase_02 AC 34 ms
52,192 KB
testcase_03 AC 37 ms
53,248 KB
testcase_04 AC 32 ms
51,816 KB
testcase_05 AC 32 ms
52,892 KB
testcase_06 AC 32 ms
52,332 KB
testcase_07 AC 33 ms
51,832 KB
testcase_08 AC 31 ms
52,068 KB
testcase_09 AC 36 ms
61,416 KB
testcase_10 AC 49 ms
69,288 KB
testcase_11 AC 47 ms
68,924 KB
testcase_12 AC 43 ms
67,152 KB
testcase_13 AC 54 ms
74,200 KB
testcase_14 AC 46 ms
66,912 KB
testcase_15 AC 49 ms
69,160 KB
testcase_16 AC 38 ms
60,748 KB
testcase_17 AC 64 ms
80,804 KB
testcase_18 AC 61 ms
78,544 KB
testcase_19 AC 48 ms
69,000 KB
testcase_20 AC 65 ms
81,352 KB
testcase_21 AC 45 ms
65,740 KB
testcase_22 AC 41 ms
64,084 KB
testcase_23 AC 33 ms
52,264 KB
testcase_24 AC 31 ms
53,008 KB
testcase_25 AC 69 ms
84,520 KB
testcase_26 AC 75 ms
84,512 KB
testcase_27 AC 69 ms
83,944 KB
testcase_28 AC 68 ms
85,144 KB
testcase_29 AC 70 ms
84,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
A=sorted(A)
print(A[0] if N==1 else A[0]*A[1] if N==2 else 1 if N%2 else min(A[0]*A[1],A[2]))
0