結果

問題 No.1816 MUL-DIV Game
ユーザー kohei2019kohei2019
提出日時 2023-08-12 15:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 86,196 KB
最終ジャッジ日時 2024-04-30 08:12:24
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,664 KB
testcase_01 AC 33 ms
52,960 KB
testcase_02 AC 32 ms
52,724 KB
testcase_03 AC 31 ms
52,068 KB
testcase_04 AC 33 ms
52,820 KB
testcase_05 AC 35 ms
52,396 KB
testcase_06 AC 34 ms
52,268 KB
testcase_07 AC 35 ms
52,360 KB
testcase_08 AC 36 ms
52,800 KB
testcase_09 AC 37 ms
61,300 KB
testcase_10 AC 47 ms
69,664 KB
testcase_11 AC 43 ms
67,664 KB
testcase_12 AC 42 ms
64,912 KB
testcase_13 AC 57 ms
76,072 KB
testcase_14 AC 45 ms
67,484 KB
testcase_15 AC 50 ms
69,556 KB
testcase_16 AC 37 ms
60,776 KB
testcase_17 AC 65 ms
81,392 KB
testcase_18 AC 62 ms
79,932 KB
testcase_19 AC 49 ms
68,488 KB
testcase_20 AC 65 ms
81,760 KB
testcase_21 AC 46 ms
66,900 KB
testcase_22 AC 43 ms
65,560 KB
testcase_23 AC 33 ms
52,316 KB
testcase_24 AC 34 ms
52,516 KB
testcase_25 AC 72 ms
86,196 KB
testcase_26 AC 54 ms
83,232 KB
testcase_27 AC 69 ms
85,384 KB
testcase_28 AC 55 ms
83,180 KB
testcase_29 AC 70 ms
84,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
# Bobで終わるときはans=1
# Aliceで終わるとき?
if N == 1:
    print(lsA[0])
    exit()
if N % 2 == 1:
    print(1)
    exit()

lsA.sort()
aa = lsA[0]*lsA[1]
lsA = [aa]+lsA[2:]
lsA.sort()
print(lsA[0])
0