結果

問題 No.1816 MUL-DIV Game
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-13 12:51:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-07-21 10:36:40
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 34 ms
11,776 KB
testcase_10 AC 46 ms
15,276 KB
testcase_11 AC 45 ms
14,804 KB
testcase_12 AC 41 ms
13,876 KB
testcase_13 AC 66 ms
17,316 KB
testcase_14 AC 50 ms
14,260 KB
testcase_15 AC 55 ms
15,388 KB
testcase_16 AC 36 ms
11,776 KB
testcase_17 AC 78 ms
19,624 KB
testcase_18 AC 76 ms
19,004 KB
testcase_19 AC 53 ms
14,924 KB
testcase_20 AC 81 ms
20,088 KB
testcase_21 AC 47 ms
13,896 KB
testcase_22 AC 43 ms
13,152 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 88 ms
21,800 KB
testcase_26 AC 64 ms
21,672 KB
testcase_27 AC 90 ms
21,804 KB
testcase_28 AC 65 ms
21,548 KB
testcase_29 AC 88 ms
21,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N == 1:
    print(A[0])
    exit()

if N == 2:
    print(A[0] * A[1])
    exit()

if N % 2 == 1:
    print(1)
    exit()

A.sort()
print(A[2])
0