結果

問題 No.2423 Merge Stones
ユーザー hiryuNhiryuN
提出日時 2023-08-12 14:42:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 789 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-19 21:01:22
合計ジャッジ時間 10,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,856 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 48 ms
59,136 KB
testcase_06 AC 54 ms
60,928 KB
testcase_07 WA -
testcase_08 AC 47 ms
57,088 KB
testcase_09 AC 47 ms
57,344 KB
testcase_10 AC 55 ms
61,568 KB
testcase_11 AC 143 ms
73,856 KB
testcase_12 AC 103 ms
75,648 KB
testcase_13 AC 124 ms
76,032 KB
testcase_14 AC 122 ms
76,160 KB
testcase_15 AC 115 ms
75,904 KB
testcase_16 AC 121 ms
76,416 KB
testcase_17 AC 115 ms
75,904 KB
testcase_18 AC 124 ms
76,160 KB
testcase_19 AC 107 ms
76,032 KB
testcase_20 AC 113 ms
75,904 KB
testcase_21 AC 122 ms
75,904 KB
testcase_22 AC 119 ms
76,032 KB
testcase_23 AC 110 ms
76,032 KB
testcase_24 AC 116 ms
76,288 KB
testcase_25 AC 113 ms
76,288 KB
testcase_26 AC 114 ms
76,160 KB
testcase_27 AC 121 ms
75,904 KB
testcase_28 AC 141 ms
76,160 KB
testcase_29 WA -
testcase_30 AC 122 ms
76,032 KB
testcase_31 AC 116 ms
76,160 KB
testcase_32 AC 123 ms
76,032 KB
testcase_33 AC 113 ms
76,416 KB
testcase_34 AC 118 ms
75,904 KB
testcase_35 AC 113 ms
76,032 KB
testcase_36 AC 118 ms
75,904 KB
testcase_37 AC 114 ms
76,544 KB
testcase_38 AC 115 ms
76,416 KB
testcase_39 WA -
testcase_40 AC 119 ms
76,160 KB
testcase_41 AC 120 ms
75,904 KB
testcase_42 AC 125 ms
76,032 KB
testcase_43 AC 105 ms
75,904 KB
testcase_44 WA -
testcase_45 AC 112 ms
76,288 KB
testcase_46 AC 121 ms
76,032 KB
testcase_47 AC 110 ms
76,288 KB
testcase_48 AC 110 ms
75,904 KB
testcase_49 AC 108 ms
76,032 KB
testcase_50 AC 105 ms
76,032 KB
testcase_51 AC 113 ms
70,144 KB
testcase_52 AC 115 ms
70,272 KB
testcase_53 AC 114 ms
70,272 KB
testcase_54 AC 113 ms
70,144 KB
testcase_55 AC 116 ms
70,400 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 152 ms
76,032 KB
testcase_62 AC 157 ms
76,032 KB
testcase_63 AC 140 ms
73,600 KB
testcase_64 AC 143 ms
72,704 KB
testcase_65 AC 136 ms
72,576 KB
testcase_66 AC 143 ms
74,240 KB
testcase_67 AC 138 ms
73,216 KB
testcase_68 AC 137 ms
72,576 KB
testcase_69 AC 149 ms
75,648 KB
testcase_70 AC 136 ms
71,424 KB
testcase_71 AC 156 ms
76,160 KB
testcase_72 AC 142 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=list(map(int,input().split()))
C=list(map(int,input().split()))
X=[0]*51
def m(A,B):
    for i in range(1,len(A)):
        if A[i]:
            for j in range(max(1,i-k),min(len(A)-1,i+k)+1):
                if B[j]:
                    return True
    return False
for i in range(n):
    Y=X[:]
    Y[C[i]]=1
    Y[0]=A[i]
    C[i]=Y
for i in range(n):
    for j in range(n):
        C[j]
        C[(j+1)%n]
        if m(C[j],C[(j+1)%n]):
            C[(j+1)%n][0]+=C[j][0]
            C[j][0]=0
            for ii in range(1,51):
                if C[j][ii] or C[(j+1)%n][ii]:
                    C[j][ii]=1
                    C[(j+1)%n][ii]=1
                    
ans=0                    
for i in range(n):
    ans=max(ans,C[i][0])
print(ans)
#print(C)
0