結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー U SU S
提出日時 2021-01-22 21:31:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 76,828 KB
最終ジャッジ日時 2024-12-27 21:48:27
合計ジャッジ時間 12,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,032 KB
testcase_01 AC 52 ms
60,252 KB
testcase_02 AC 51 ms
60,544 KB
testcase_03 AC 53 ms
60,928 KB
testcase_04 AC 50 ms
60,416 KB
testcase_05 AC 53 ms
60,160 KB
testcase_06 AC 50 ms
60,544 KB
testcase_07 AC 52 ms
60,672 KB
testcase_08 AC 51 ms
60,800 KB
testcase_09 AC 52 ms
60,160 KB
testcase_10 AC 51 ms
60,544 KB
testcase_11 AC 50 ms
60,416 KB
testcase_12 AC 53 ms
60,288 KB
testcase_13 AC 51 ms
60,544 KB
testcase_14 AC 64 ms
66,560 KB
testcase_15 AC 63 ms
66,560 KB
testcase_16 AC 56 ms
63,744 KB
testcase_17 AC 65 ms
66,560 KB
testcase_18 AC 51 ms
60,288 KB
testcase_19 AC 70 ms
68,352 KB
testcase_20 AC 64 ms
66,176 KB
testcase_21 AC 52 ms
60,288 KB
testcase_22 AC 70 ms
68,096 KB
testcase_23 AC 95 ms
76,660 KB
testcase_24 AC 130 ms
76,688 KB
testcase_25 AC 352 ms
76,740 KB
testcase_26 AC 70 ms
69,120 KB
testcase_27 AC 65 ms
67,840 KB
testcase_28 AC 352 ms
76,672 KB
testcase_29 AC 80 ms
73,368 KB
testcase_30 AC 99 ms
76,492 KB
testcase_31 AC 98 ms
76,636 KB
testcase_32 AC 74 ms
71,168 KB
testcase_33 AC 354 ms
76,608 KB
testcase_34 AC 352 ms
76,740 KB
testcase_35 AC 351 ms
76,784 KB
testcase_36 AC 347 ms
76,828 KB
testcase_37 AC 349 ms
76,608 KB
testcase_38 AC 350 ms
76,672 KB
testcase_39 AC 349 ms
76,736 KB
testcase_40 AC 351 ms
76,656 KB
testcase_41 AC 346 ms
76,672 KB
testcase_42 AC 348 ms
76,672 KB
testcase_43 AC 53 ms
60,032 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1

n = int(input())
a = lmp()
grid = []
for i in range(n):
    b = lmp()
    grid.append(b)
ans = 0
ans_a = 0
for i in range(1,2**n):
    cnt = 0
    for j in range(n):
        if i & 1 << j:
            cnt += a[j]
            for k in range(j, n):
                if i & 1 << k:
                    cnt += grid[j][k]
    if ans < cnt:
        ans = cnt
        ans_a = i
print(ans)
ans_n = []
for i in range(n):
    if ans_a & 1 << i:
        ans_n.append(i+1)
print(*ans_n)



0