結果

問題 No.1816 MUL-DIV Game
ユーザー titiatitia
提出日時 2022-01-21 21:42:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-05-04 12:20:16
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 28 ms
11,904 KB
testcase_10 AC 38 ms
15,404 KB
testcase_11 AC 35 ms
15,060 KB
testcase_12 AC 34 ms
14,008 KB
testcase_13 AC 63 ms
17,320 KB
testcase_14 AC 52 ms
14,804 KB
testcase_15 AC 51 ms
15,396 KB
testcase_16 AC 33 ms
11,904 KB
testcase_17 AC 81 ms
19,740 KB
testcase_18 AC 76 ms
19,000 KB
testcase_19 AC 54 ms
14,928 KB
testcase_20 AC 82 ms
20,072 KB
testcase_21 AC 45 ms
14,032 KB
testcase_22 AC 38 ms
13,380 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 82 ms
21,632 KB
testcase_26 AC 57 ms
21,612 KB
testcase_27 AC 82 ms
21,588 KB
testcase_28 AC 56 ms
21,632 KB
testcase_29 AC 82 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

if N==1:
    print(A[0])
elif N==2:
    print(A[0]*A[1])
elif N%2==1:
    print(1)
elif 1 in A:
    print(1)
else:
    A.sort()
    B=A[2:]+[A[0]*A[1]]
    print(min(B))
    
    
0