結果

問題 No.1816 MUL-DIV Game
ユーザー kohei2019kohei2019
提出日時 2023-08-12 15:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-11-19 23:49:47
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
51,328 KB
testcase_07 AC 43 ms
51,584 KB
testcase_08 AC 43 ms
51,328 KB
testcase_09 AC 48 ms
59,520 KB
testcase_10 AC 57 ms
67,968 KB
testcase_11 AC 56 ms
67,072 KB
testcase_12 AC 53 ms
64,640 KB
testcase_13 AC 72 ms
74,112 KB
testcase_14 AC 60 ms
66,944 KB
testcase_15 AC 65 ms
68,992 KB
testcase_16 AC 51 ms
60,160 KB
testcase_17 AC 83 ms
80,896 KB
testcase_18 AC 80 ms
78,464 KB
testcase_19 AC 62 ms
68,096 KB
testcase_20 AC 84 ms
81,024 KB
testcase_21 AC 58 ms
65,408 KB
testcase_22 AC 56 ms
63,488 KB
testcase_23 AC 41 ms
51,328 KB
testcase_24 AC 42 ms
51,328 KB
testcase_25 AC 92 ms
84,480 KB
testcase_26 AC 73 ms
81,920 KB
testcase_27 AC 93 ms
84,480 KB
testcase_28 AC 72 ms
81,664 KB
testcase_29 AC 90 ms
84,096 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