結果

問題 No.1816 MUL-DIV Game
ユーザー titiatitia
提出日時 2022-01-21 21:40:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-05-04 12:16:43
合計ジャッジ時間 2,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 30 ms
11,520 KB
testcase_10 AC 40 ms
15,272 KB
testcase_11 AC 37 ms
14,888 KB
testcase_12 AC 33 ms
14,000 KB
testcase_13 AC 59 ms
17,180 KB
testcase_14 AC 43 ms
14,260 KB
testcase_15 AC 49 ms
15,380 KB
testcase_16 AC 31 ms
11,904 KB
testcase_17 AC 70 ms
19,480 KB
testcase_18 AC 65 ms
19,120 KB
testcase_19 AC 44 ms
14,916 KB
testcase_20 AC 69 ms
20,216 KB
testcase_21 AC 40 ms
13,900 KB
testcase_22 AC 38 ms
13,144 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 76 ms
21,800 KB
testcase_26 AC 58 ms
21,672 KB
testcase_27 AC 78 ms
21,804 KB
testcase_28 AC 56 ms
21,676 KB
testcase_29 AC 78 ms
21,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if N==1:
    print(A[0])
elif N==2:
    print(A[0]*A[1])
elif N%2==1:
    print(1)
else:
    A.sort()
    print(A[2])
    
    
0