結果

問題 No.2702 Nand Nor Matrix
ユーザー 👑 rin204rin204
提出日時 2024-03-30 00:20:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 104,448 KB
最終ジャッジ日時 2024-09-30 17:15:40
合計ジャッジ時間 31,557 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,476 KB
testcase_01 AC 527 ms
77,056 KB
testcase_02 AC 524 ms
76,648 KB
testcase_03 AC 519 ms
76,416 KB
testcase_04 AC 537 ms
76,800 KB
testcase_05 AC 535 ms
77,056 KB
testcase_06 AC 524 ms
76,672 KB
testcase_07 AC 529 ms
76,788 KB
testcase_08 AC 548 ms
76,544 KB
testcase_09 AC 543 ms
76,868 KB
testcase_10 AC 546 ms
77,056 KB
testcase_11 AC 519 ms
76,412 KB
testcase_12 AC 533 ms
77,184 KB
testcase_13 AC 528 ms
76,544 KB
testcase_14 AC 529 ms
76,752 KB
testcase_15 AC 511 ms
76,544 KB
testcase_16 AC 474 ms
90,624 KB
testcase_17 AC 257 ms
100,864 KB
testcase_18 AC 409 ms
86,932 KB
testcase_19 AC 584 ms
85,248 KB
testcase_20 AC 288 ms
97,664 KB
testcase_21 AC 343 ms
83,968 KB
testcase_22 AC 288 ms
83,968 KB
testcase_23 AC 525 ms
79,452 KB
testcase_24 AC 468 ms
104,448 KB
testcase_25 AC 305 ms
84,096 KB
testcase_26 AC 352 ms
88,620 KB
testcase_27 AC 586 ms
94,976 KB
testcase_28 AC 514 ms
85,248 KB
testcase_29 AC 193 ms
85,504 KB
testcase_30 AC 594 ms
104,192 KB
testcase_31 AC 556 ms
77,440 KB
testcase_32 AC 137 ms
82,488 KB
testcase_33 AC 233 ms
95,232 KB
testcase_34 AC 505 ms
86,848 KB
testcase_35 AC 547 ms
90,452 KB
testcase_36 AC 637 ms
104,064 KB
testcase_37 AC 676 ms
104,320 KB
testcase_38 AC 661 ms
104,280 KB
testcase_39 AC 633 ms
104,320 KB
testcase_40 AC 655 ms
103,936 KB
testcase_41 AC 668 ms
104,064 KB
testcase_42 AC 651 ms
104,064 KB
testcase_43 AC 646 ms
103,936 KB
testcase_44 AC 673 ms
103,936 KB
testcase_45 AC 659 ms
104,320 KB
testcase_46 AC 646 ms
103,968 KB
testcase_47 AC 660 ms
104,292 KB
testcase_48 AC 655 ms
104,284 KB
testcase_49 AC 650 ms
103,936 KB
testcase_50 AC 640 ms
104,064 KB
testcase_51 AC 489 ms
76,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = [A[0]] + [int(input()) for _ in range(n - 1)]

jj = n + 1
for j in range(2, n):
    if A[j] == A[j - 1]:
        jj = j
        break

ii = n + 1
for i in range(2, n):
    if B[i] == B[i - 1]:
        ii = i
        break

Q = int(input())
for _ in range(Q):
    t, r, c = map(int, input().split())
    if r == 1:
        print(A[c - 1])
    elif c == 1:
        print(B[r - 1])
    elif r + c - 3 > t or A[1] != B[1] or r > ii or c > jj:
        if t % 2 == 0:
            print(0)
        else:
            print(1)
    else:
        print((r + c + A[1] + 1) % 2)
0