94642024-02-22 09:06:04birozsFestés (50 pont)python3Wrong answer 0/50481ms116196 KiB
N,M = map(int,input().split())
soronkent = list(map(int,input().split()))

matrix = []
for Oszlop in range(M):
    sor = list(map(int,input().split()))
    matrix.append(sor)

if N == 2:
    #Mindkét sor festve
    eset = [sum(soronkent)]
    #Csak első sor festve
    osszeg = soronkent[0]
    for Oszlop in range(M):
        osszeg += min([matrix[Oszlop][2],matrix[Oszlop][1]])
    eset.append(osszeg)
    #Csak második sor festve
    osszeg = soronkent[1]
    for Oszlop in range(M):
        osszeg += min([matrix[Oszlop][0],matrix[Oszlop][1]])
    eset.append(osszeg)
    #Nincs sor festve
    osszeg = 0
    for Oszlop in range(N):
        osszeg += min([matrix[Oszlop][0]+matrix[Oszlop][2],matrix[Oszlop][1]])
    eset.append(osszeg)
    print(min(eset))
if N == 3:
                                
    print(100)
if N == 4:
                           
    print(100)

SubtaskSumTestVerdictTimeMemory
base0/50
1Accepted0/017ms11236 KiB
2Wrong answer0/017ms11424 KiB
3Wrong answer0/2354ms76472 KiB
4Wrong answer0/217ms12100 KiB
5Wrong answer0/321ms12632 KiB
6Wrong answer0/259ms21864 KiB
7Wrong answer0/2449ms113648 KiB
8Wrong answer0/2451ms112592 KiB
9Wrong answer0/2481ms112684 KiB
10Wrong answer0/2474ms113668 KiB
11Wrong answer0/2467ms114296 KiB
12Wrong answer0/2409ms105948 KiB
13Wrong answer0/2425ms106200 KiB
14Wrong answer0/2393ms59076 KiB
15Wrong answer0/3400ms59152 KiB
16Wrong answer0/3352ms75500 KiB
17Wrong answer0/2354ms76528 KiB
18Wrong answer0/3354ms74604 KiB
19Wrong answer0/2423ms97204 KiB
20Wrong answer0/2453ms106168 KiB
21Wrong answer0/2448ms110972 KiB
22Wrong answer0/2477ms112164 KiB
23Wrong answer0/2449ms112956 KiB
24Wrong answer0/2460ms109204 KiB
25Wrong answer0/2456ms116196 KiB