Submission #4060483


Source Code Expand

H,W = map(int,input().split())

A=[]
for i in range(H):
    A.append(list(map(int,input().split())))

ans=[]

print(H,W)

for i in range(H):
    for j in range(W):
        if i%2==0:
            n=j
        else:
            n=W-1-j
        if A[i][n]%2==1:
            A[i][n]-=1
            if i<H-1 and ((i%2==0 and n==W-1) or (i%2==1 and n==0)):
                A[i+1][n]+=1
                ans.append('{} {} {} {}'.format(i+1,n+1,i+2,n+1))
            if (i%2==0 and n!=W-1) or (i%2==1 and n!=0):
                A[i][n+(-1)**(i%2)]+=1
                ans.append('{} {} {} {}'.format(i+1,n+1,i+1,n+1+(-1)**(i%2)))

print(len(ans))
for s in ans:
    print(s)

Submission Info

Submission Time
Task D - Make Them Even
User nuko274
Language PyPy3 (2.4.0)
Score 0
Code Size 691 Byte
Status WA
Exec Time 592 ms
Memory 69468 KB

Judge Result

Set Name All Sample
Score / Max Score 0 / 400 0 / 0
Status
WA × 29
WA × 3
Set Name Test Cases
All hand_1, hand_2, hand_3, hand_4, hand_5, hand_6, max_1, max_10, max_2, max_3, max_4, max_5, max_6, max_7, max_8, max_9, random_1, random_10, random_2, random_3, random_4, random_5, random_6, random_7, random_8, random_9, sample_01, sample_02, sample_03
Sample sample_01, sample_02, sample_03
Case Name Status Exec Time Memory
hand_1 WA 161 ms 38256 KB
hand_2 WA 160 ms 38256 KB
hand_3 WA 169 ms 38256 KB
hand_4 WA 184 ms 38512 KB
hand_5 WA 580 ms 69084 KB
hand_6 WA 237 ms 43228 KB
max_1 WA 580 ms 68956 KB
max_10 WA 585 ms 68956 KB
max_2 WA 589 ms 69468 KB
max_3 WA 582 ms 69340 KB
max_4 WA 579 ms 69212 KB
max_5 WA 592 ms 69340 KB
max_6 WA 586 ms 69340 KB
max_7 WA 587 ms 69084 KB
max_8 WA 580 ms 68956 KB
max_9 WA 576 ms 68828 KB
random_1 WA 191 ms 39920 KB
random_10 WA 277 ms 46300 KB
random_2 WA 316 ms 48604 KB
random_3 WA 339 ms 50140 KB
random_4 WA 259 ms 45788 KB
random_5 WA 285 ms 47068 KB
random_6 WA 370 ms 53340 KB
random_7 WA 331 ms 50140 KB
random_8 WA 355 ms 52060 KB
random_9 WA 421 ms 56924 KB
sample_01 WA 164 ms 38256 KB
sample_02 WA 161 ms 38256 KB
sample_03 WA 160 ms 38256 KB