結果

問題 No.1816 MUL-DIV Game
ユーザー KudeKude
提出日時 2022-01-21 21:31:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 84,176 KB
最終ジャッジ日時 2024-11-25 22:47:23
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,428 KB
testcase_01 AC 35 ms
52,444 KB
testcase_02 AC 35 ms
53,340 KB
testcase_03 AC 37 ms
52,148 KB
testcase_04 AC 36 ms
52,080 KB
testcase_05 AC 36 ms
53,032 KB
testcase_06 AC 37 ms
51,820 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 36 ms
52,132 KB
testcase_09 AC 42 ms
60,268 KB
testcase_10 AC 53 ms
70,404 KB
testcase_11 AC 51 ms
68,908 KB
testcase_12 AC 46 ms
66,104 KB
testcase_13 AC 59 ms
73,636 KB
testcase_14 AC 49 ms
66,604 KB
testcase_15 AC 53 ms
69,792 KB
testcase_16 AC 40 ms
61,900 KB
testcase_17 AC 67 ms
79,740 KB
testcase_18 AC 68 ms
78,248 KB
testcase_19 AC 49 ms
68,500 KB
testcase_20 AC 67 ms
81,036 KB
testcase_21 AC 46 ms
65,248 KB
testcase_22 AC 44 ms
64,776 KB
testcase_23 AC 36 ms
52,380 KB
testcase_24 AC 36 ms
52,292 KB
testcase_25 AC 71 ms
83,380 KB
testcase_26 AC 72 ms
84,144 KB
testcase_27 AC 78 ms
83,188 KB
testcase_28 AC 77 ms
84,176 KB
testcase_29 AC 78 ms
83,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(map(int, input().split()))
if n % 2 == 1:
    print(1 if n > 1 else a[0])
else:
    a.insert(0, a.pop(0) * a.pop(0))
    a.sort()
    print(a[0])
0