結果

問題 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  
実行時間 96 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,900 KB
最終ジャッジ日時 2024-11-25 23:23:30
合計ジャッジ時間 2,679 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 33 ms
11,648 KB
testcase_10 AC 54 ms
15,460 KB
testcase_11 AC 50 ms
14,980 KB
testcase_12 AC 46 ms
13,916 KB
testcase_13 AC 68 ms
17,488 KB
testcase_14 AC 51 ms
14,428 KB
testcase_15 AC 57 ms
15,436 KB
testcase_16 AC 35 ms
11,904 KB
testcase_17 AC 82 ms
19,928 KB
testcase_18 AC 77 ms
19,128 KB
testcase_19 AC 54 ms
14,980 KB
testcase_20 AC 86 ms
20,084 KB
testcase_21 AC 46 ms
14,096 KB
testcase_22 AC 43 ms
13,184 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 95 ms
21,892 KB
testcase_26 AC 87 ms
21,764 KB
testcase_27 AC 95 ms
21,772 KB
testcase_28 AC 86 ms
21,896 KB
testcase_29 AC 96 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