結果

問題 No.1792 科学の甲子園
ユーザー chineristACchineristAC
提出日時 2021-12-21 00:20:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 4,000 ms
コード長 883 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-05-05 01:29:04
合計ジャッジ時間 3,415 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
67,456 KB
testcase_01 AC 64 ms
67,840 KB
testcase_02 AC 58 ms
64,896 KB
testcase_03 AC 61 ms
66,304 KB
testcase_04 AC 60 ms
66,048 KB
testcase_05 AC 59 ms
65,152 KB
testcase_06 AC 59 ms
65,408 KB
testcase_07 AC 63 ms
64,896 KB
testcase_08 AC 66 ms
68,352 KB
testcase_09 AC 69 ms
69,504 KB
testcase_10 AC 62 ms
66,944 KB
testcase_11 AC 128 ms
77,824 KB
testcase_12 AC 97 ms
77,552 KB
testcase_13 AC 118 ms
77,568 KB
testcase_14 AC 111 ms
77,440 KB
testcase_15 AC 105 ms
77,696 KB
testcase_16 AC 57 ms
64,640 KB
testcase_17 AC 63 ms
66,944 KB
testcase_18 AC 62 ms
66,432 KB
testcase_19 AC 101 ms
77,440 KB
testcase_20 AC 116 ms
77,952 KB
testcase_21 AC 101 ms
77,440 KB
testcase_22 AC 111 ms
77,952 KB
testcase_23 AC 99 ms
77,440 KB
testcase_24 AC 55 ms
63,616 KB
testcase_25 AC 56 ms
63,744 KB
testcase_26 AC 56 ms
64,640 KB
testcase_27 AC 107 ms
77,652 KB
testcase_28 AC 110 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
dp = [[0 for j in range(5)] for i in range(1<<6)]
for j in range(5):
    dp[0][j] = 1
for i in range(N):
    A = li()
    P = [0 for S in range(1<<6)]
    P[0] = 1
    for j in range(6):
        for S in range(1<<j,2<<j):
            P[S] = P[S-(1<<j)] * A[j]
    
    for S in range(1<<6)[::-1]:
        for j in range(4)[::-1]:
            T = (1<<6) -1- S
            if not dp[S][j]:
                continue
            tmp = T
            while tmp:
                dp[S+tmp][j+1] = max(dp[S+tmp][j+1],dp[S][j]*P[tmp])
                tmp = (tmp-1)&T
    
    #print(dp)

print(dp[-1][4])
0