結果

問題 No.5002 stick xor
ユーザー るさるさ
提出日時 2018-05-28 21:48:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 983 ms / 1,000 ms
コード長 939 bytes
コンパイル時間 30,375 ms
実行使用メモリ 5,772 KB
スコア 28,261
最終ジャッジ日時 2018-05-28 21:49:19
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 888 ms
5,772 KB
testcase_01 AC 983 ms
5,772 KB
testcase_02 AC 883 ms
5,768 KB
testcase_03 AC 903 ms
5,768 KB
testcase_04 AC 830 ms
5,768 KB
testcase_05 AC 877 ms
5,768 KB
testcase_06 AC 817 ms
5,768 KB
testcase_07 AC 884 ms
5,768 KB
testcase_08 AC 983 ms
5,772 KB
testcase_09 AC 862 ms
5,768 KB
testcase_10 AC 915 ms
5,772 KB
testcase_11 AC 867 ms
5,772 KB
testcase_12 AC 877 ms
5,764 KB
testcase_13 AC 846 ms
5,768 KB
testcase_14 AC 930 ms
5,768 KB
testcase_15 AC 907 ms
5,772 KB
testcase_16 AC 885 ms
5,772 KB
testcase_17 AC 938 ms
5,772 KB
testcase_18 AC 860 ms
5,768 KB
testcase_19 AC 853 ms
5,768 KB
testcase_20 AC 886 ms
5,772 KB
testcase_21 AC 837 ms
5,768 KB
testcase_22 AC 880 ms
5,772 KB
testcase_23 AC 905 ms
5,768 KB
testcase_24 AC 901 ms
5,768 KB
testcase_25 AC 821 ms
5,772 KB
testcase_26 AC 919 ms
5,768 KB
testcase_27 AC 895 ms
5,772 KB
testcase_28 AC 960 ms
5,772 KB
testcase_29 AC 917 ms
5,768 KB
testcase_30 AC 861 ms
5,772 KB
testcase_31 AC 869 ms
5,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
s=time.time()
f=[]
n,k=list(map(int,input().split()))
l=list(map(int,input().split()))
for i in range(n):
    f.append(list(map(int,list(input()))))



for i in range(k):
    nl=l[i]
    maxb=0
    maxd=[0,0,0]
    c=n-nl+1
    for x in range(c):
        for y in range(c):
            h=sum(f[x][y:y+nl])
            w=0
            #for z in range(nl):
            #    w+=f[x+z][y]
            m=max([h,w])
            if maxb<m:
                maxb=m
                maxd=[x,y,h<w]
                isbreak=m>=nl-2
                if isbreak:
                    break
        if isbreak:
            break
    fa,fb,fc=maxd
    for z in range(nl):
        f[fa+fc*z][fb+(fc-1)*(-z)]=not f[fa+fc*z][fb+(fc-1)*(-z)]
    put=str(fa+1)+" "+str(fb+1)+" "
    if fc:
        put+=str(fa+nl)+" "+str(fb+1)
    else:
        put+=str(fa+1)+" "+str(fb+nl)
    print(put)
print(time.time()-s)
for i in f:
    print(list(map(int,i)))
0