結果

問題 No.1816 MUL-DIV Game
ユーザー ygd.ygd.
提出日時 2022-01-21 21:45:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,028 KB
最終ジャッジ日時 2024-05-04 12:27:12
合計ジャッジ時間 2,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 34 ms
11,904 KB
testcase_10 AC 56 ms
15,588 KB
testcase_11 AC 52 ms
15,112 KB
testcase_12 AC 47 ms
14,044 KB
testcase_13 AC 69 ms
17,364 KB
testcase_14 AC 51 ms
14,556 KB
testcase_15 AC 57 ms
15,688 KB
testcase_16 AC 35 ms
11,904 KB
testcase_17 AC 84 ms
19,740 KB
testcase_18 AC 81 ms
19,176 KB
testcase_19 AC 56 ms
15,108 KB
testcase_20 AC 88 ms
20,216 KB
testcase_21 AC 49 ms
14,096 KB
testcase_22 AC 44 ms
13,440 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 98 ms
21,896 KB
testcase_26 AC 88 ms
21,900 KB
testcase_27 AC 98 ms
21,888 KB
testcase_28 AC 87 ms
22,028 KB
testcase_29 AC 98 ms
21,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
#input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


def main():
    N = int(input())
    A = list(map(int,input().split()))
    A.sort()
    if N == 1:
        print(A[0])
    elif N == 2:
        print(A[0]*A[1])
    elif N%2 == 1:
        print(1)
    else:
        B = []
        B.append(A[0]*A[1])
        for i in range(2,N):
            B.append(A[i])
        B.sort()
        print(B[0])
    

if __name__ == '__main__':
    main()
0