結果

問題 No.1816 MUL-DIV Game
ユーザー puznekopuzneko
提出日時 2022-02-04 00:55:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-06-11 10:01:39
合計ジャッジ時間 3,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 27 ms
11,648 KB
testcase_10 AC 38 ms
15,400 KB
testcase_11 AC 35 ms
14,944 KB
testcase_12 AC 32 ms
13,924 KB
testcase_13 AC 52 ms
17,188 KB
testcase_14 AC 39 ms
14,400 KB
testcase_15 AC 44 ms
15,388 KB
testcase_16 AC 29 ms
11,776 KB
testcase_17 AC 64 ms
19,624 KB
testcase_18 AC 63 ms
19,132 KB
testcase_19 AC 43 ms
14,928 KB
testcase_20 AC 72 ms
19,952 KB
testcase_21 AC 39 ms
13,856 KB
testcase_22 AC 34 ms
13,152 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 24 ms
10,624 KB
testcase_25 AC 75 ms
21,500 KB
testcase_26 AC 58 ms
21,504 KB
testcase_27 AC 79 ms
21,508 KB
testcase_28 AC 58 ms
21,500 KB
testcase_29 AC 72 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, *a = map(int, stdin.read().split())

if n == 1:
    print("{}".format(a[0]))
    exit()
elif n == 2:
    print("{}".format(a[0]*a[1]))
    exit()
elif n % 2 == 1:
    print("{}".format(1))
    exit()

a.sort()
ans = min(a[0]*a[1],a[2])
print("{}".format(ans))
0