結果

問題 No.1792 科学の甲子園
ユーザー 👑 rin204rin204
提出日時 2022-01-21 01:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 4,000 ms
コード長 706 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-11-26 17:57:08
合計ジャッジ時間 2,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,360 KB
testcase_01 AC 58 ms
63,872 KB
testcase_02 AC 53 ms
62,592 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 55 ms
62,976 KB
testcase_05 AC 58 ms
63,488 KB
testcase_06 AC 54 ms
62,592 KB
testcase_07 AC 53 ms
62,464 KB
testcase_08 AC 58 ms
64,640 KB
testcase_09 AC 60 ms
64,896 KB
testcase_10 AC 57 ms
63,872 KB
testcase_11 AC 76 ms
71,296 KB
testcase_12 AC 74 ms
69,888 KB
testcase_13 AC 77 ms
70,400 KB
testcase_14 AC 83 ms
73,216 KB
testcase_15 AC 77 ms
69,632 KB
testcase_16 AC 52 ms
62,464 KB
testcase_17 AC 57 ms
63,744 KB
testcase_18 AC 58 ms
63,232 KB
testcase_19 AC 75 ms
70,016 KB
testcase_20 AC 84 ms
73,088 KB
testcase_21 AC 73 ms
69,632 KB
testcase_22 AC 78 ms
71,424 KB
testcase_23 AC 73 ms
70,144 KB
testcase_24 AC 52 ms
62,592 KB
testcase_25 AC 53 ms
62,592 KB
testcase_26 AC 54 ms
62,336 KB
testcase_27 AC 78 ms
70,784 KB
testcase_28 AC 86 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mip = [list(map(int, input().split())) for _ in range(n)]
ans = 0

P = [0] * (1 << 6)
for bit in range(1 << 6):
    lst = []
    for i in range(6):
        if bit >> i & 1:
            lst.append(i)
    
    for i in range(n):
        prod = 1
        for j in lst:
            prod *= mip[i][j]
        P[bit] = max(P[bit], prod)
    
max_ = (1 << 6) - 1
for bit1 in range(1 << 6):
    for bit2 in range(1 << 6):
        if bit1 & bit2 != 0:
            continue
        for bit3 in range(1 << 6):
            if (bit1 | bit2) & bit3 != 0:
                continue
            bit4 = max_ ^ (bit1 | bit2 | bit3)
            ans = max(ans, P[bit1] * P[bit2] * P[bit3] * P[bit4])
print(ans)
0