結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー O2MTO2MT
提出日時 2021-01-23 17:26:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-06-10 01:10:06
合計ジャッジ時間 10,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 36 ms
51,992 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 34 ms
52,480 KB
testcase_10 AC 34 ms
52,480 KB
testcase_11 AC 34 ms
52,352 KB
testcase_12 AC 39 ms
52,528 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 47 ms
61,440 KB
testcase_15 AC 53 ms
61,952 KB
testcase_16 AC 37 ms
52,864 KB
testcase_17 AC 46 ms
61,440 KB
testcase_18 AC 37 ms
52,480 KB
testcase_19 AC 54 ms
65,024 KB
testcase_20 AC 46 ms
61,824 KB
testcase_21 AC 36 ms
52,388 KB
testcase_22 AC 53 ms
65,024 KB
testcase_23 AC 93 ms
75,968 KB
testcase_24 AC 129 ms
76,332 KB
testcase_25 AC 361 ms
76,124 KB
testcase_26 AC 72 ms
72,064 KB
testcase_27 AC 69 ms
68,992 KB
testcase_28 AC 370 ms
76,416 KB
testcase_29 AC 83 ms
76,136 KB
testcase_30 AC 94 ms
76,116 KB
testcase_31 AC 92 ms
76,332 KB
testcase_32 AC 72 ms
75,912 KB
testcase_33 AC 358 ms
76,216 KB
testcase_34 AC 363 ms
76,240 KB
testcase_35 AC 382 ms
76,160 KB
testcase_36 AC 364 ms
76,160 KB
testcase_37 AC 356 ms
76,092 KB
testcase_38 AC 359 ms
76,076 KB
testcase_39 AC 355 ms
75,932 KB
testcase_40 AC 375 ms
75,932 KB
testcase_41 AC 359 ms
76,416 KB
testcase_42 AC 358 ms
75,996 KB
testcase_43 AC 35 ms
52,480 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = [list(map(int,input().split())) for _ in range(N)]
ans_point = 0
ans_waon = [] 
for i in range(2**N):
    point = 0
    waon = []
    pattern = bin(i)[2:].zfill(N)
    for j in range(N):
        if pattern[j] == "1":
            point += A[j]
            waon.append(j+1)
    len_w = len(waon)
    for k in range(len_w):
        for l in range(k+1,len_w):
            point += B[waon[k]-1][waon[l]-1]
    if ans_point < point:
        ans_point = point
        ans_waon = waon

print(ans_point)
print(*ans_waon)
0