結果

問題 No.1816 MUL-DIV Game
ユーザー warabi0906warabi0906
提出日時 2023-05-09 21:13:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 84,972 KB
最終ジャッジ日時 2024-05-04 17:22:08
合計ジャッジ時間 2,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,148 KB
testcase_01 AC 32 ms
53,184 KB
testcase_02 AC 32 ms
51,996 KB
testcase_03 AC 30 ms
52,868 KB
testcase_04 AC 31 ms
53,192 KB
testcase_05 AC 31 ms
52,420 KB
testcase_06 AC 31 ms
52,240 KB
testcase_07 AC 30 ms
52,964 KB
testcase_08 AC 33 ms
52,888 KB
testcase_09 AC 37 ms
61,296 KB
testcase_10 AC 52 ms
70,608 KB
testcase_11 AC 46 ms
69,168 KB
testcase_12 AC 42 ms
66,912 KB
testcase_13 AC 55 ms
73,932 KB
testcase_14 AC 45 ms
66,588 KB
testcase_15 AC 52 ms
69,556 KB
testcase_16 AC 37 ms
60,412 KB
testcase_17 AC 62 ms
80,820 KB
testcase_18 AC 62 ms
78,664 KB
testcase_19 AC 47 ms
70,024 KB
testcase_20 AC 62 ms
81,068 KB
testcase_21 AC 44 ms
65,464 KB
testcase_22 AC 40 ms
63,984 KB
testcase_23 AC 31 ms
51,892 KB
testcase_24 AC 31 ms
53,228 KB
testcase_25 AC 70 ms
84,972 KB
testcase_26 AC 68 ms
84,708 KB
testcase_27 AC 69 ms
83,980 KB
testcase_28 AC 69 ms
84,968 KB
testcase_29 AC 71 ms
84,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=sorted(list(map(int,input().split())))
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