結果

問題 No.2702 Nand Nor Matrix
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-06 13:20:56
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 655 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 851,200 KB
最終ジャッジ日時 2024-09-28 12:12:43
合計ジャッジ時間 11,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 239 ms
98,048 KB
testcase_02 AC 129 ms
77,056 KB
testcase_03 AC 229 ms
101,120 KB
testcase_04 AC 434 ms
174,336 KB
testcase_05 AC 368 ms
155,008 KB
testcase_06 AC 245 ms
102,656 KB
testcase_07 AC 326 ms
119,040 KB
testcase_08 AC 224 ms
92,800 KB
testcase_09 AC 283 ms
113,664 KB
testcase_10 AC 344 ms
122,496 KB
testcase_11 AC 163 ms
79,104 KB
testcase_12 AC 236 ms
92,928 KB
testcase_13 AC 195 ms
82,688 KB
testcase_14 AC 311 ms
125,440 KB
testcase_15 AC 212 ms
93,440 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline

N=int(input())
A=list(map(int,input().split()))
mat=[[0]*N for i in range(N)]
mat[0]=A
B=[int(input()) for i in range(N-1)]
for i in range(N-1):
    mat[i+1][0]=B[i]
ser=[]
ser.append([i[:] for i in mat])
for i in range(400):
    for j in range(N-1,0,-1):
        for k in range(N-1,0,-1):
            if mat[j][k]==mat[j-1][k] or mat[j][k]==mat[j][k-1]:
                mat[j][k]^=1
    ser.append([i[:] for i in mat])
Q=int(input())
for i in range(Q):
    T,R,C=map(int,input().split())
    print(ser[T][R-1][C-1])
0