結果

問題 No.1792 科学の甲子園
ユーザー chineristACchineristAC
提出日時 2021-12-21 00:15:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 860 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-15 15:28:29
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
67,456 KB
testcase_01 AC 70 ms
67,840 KB
testcase_02 WA -
testcase_03 AC 63 ms
65,280 KB
testcase_04 AC 68 ms
66,432 KB
testcase_05 AC 63 ms
64,896 KB
testcase_06 AC 64 ms
65,152 KB
testcase_07 WA -
testcase_08 AC 75 ms
68,864 KB
testcase_09 AC 80 ms
71,168 KB
testcase_10 AC 69 ms
67,584 KB
testcase_11 AC 117 ms
77,696 KB
testcase_12 AC 103 ms
77,440 KB
testcase_13 AC 109 ms
77,440 KB
testcase_14 AC 113 ms
77,184 KB
testcase_15 AC 105 ms
77,568 KB
testcase_16 AC 64 ms
65,152 KB
testcase_17 AC 68 ms
67,072 KB
testcase_18 AC 69 ms
67,456 KB
testcase_19 AC 105 ms
77,568 KB
testcase_20 AC 114 ms
77,696 KB
testcase_21 AC 118 ms
77,696 KB
testcase_22 AC 113 ms
77,824 KB
testcase_23 AC 112 ms
77,312 KB
testcase_24 AC 58 ms
62,848 KB
testcase_25 AC 62 ms
64,384 KB
testcase_26 AC 62 ms
64,512 KB
testcase_27 AC 106 ms
77,184 KB
testcase_28 AC 113 ms
77,568 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)]
dp[0][0] = 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