結果

問題 No.1816 MUL-DIV Game
ユーザー pluto77pluto77
提出日時 2022-02-04 11:09:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,928 KB
最終ジャッジ日時 2024-06-11 10:08:10
合計ジャッジ時間 3,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 29 ms
11,776 KB
testcase_10 AC 45 ms
15,400 KB
testcase_11 AC 45 ms
14,924 KB
testcase_12 AC 39 ms
14,252 KB
testcase_13 AC 54 ms
17,180 KB
testcase_14 AC 41 ms
14,512 KB
testcase_15 AC 47 ms
15,388 KB
testcase_16 AC 32 ms
11,904 KB
testcase_17 AC 67 ms
19,616 KB
testcase_18 AC 64 ms
19,124 KB
testcase_19 AC 45 ms
15,172 KB
testcase_20 AC 68 ms
20,092 KB
testcase_21 AC 39 ms
14,020 KB
testcase_22 AC 35 ms
13,148 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 75 ms
21,800 KB
testcase_26 AC 74 ms
21,800 KB
testcase_27 AC 74 ms
21,804 KB
testcase_28 AC 75 ms
21,800 KB
testcase_29 AC 73 ms
21,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1816
n=int(input())
a=sorted(list(map(int,input().split())))
if n==1:
 print(a[0])
elif n==2:
 print(a[0]*a[1])
elif n%2:
 print(1)
else:
 print(min(a[0]*a[1],a[2]))
0