結果

問題 No.1997 X Lighting
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-01 22:49:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,888 KB
最終ジャッジ日時 2024-05-04 17:12:58
合計ジャッジ時間 12,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 40 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
52,224 KB
testcase_11 WA -
testcase_12 AC 41 ms
52,352 KB
testcase_13 WA -
testcase_14 AC 384 ms
130,240 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 787 ms
125,964 KB
testcase_21 AC 782 ms
124,828 KB
testcase_22 WA -
testcase_23 AC 430 ms
102,656 KB
testcase_24 AC 110 ms
77,056 KB
testcase_25 AC 781 ms
130,888 KB
testcase_26 AC 647 ms
119,744 KB
testcase_27 AC 664 ms
120,244 KB
testcase_28 AC 267 ms
89,472 KB
testcase_29 AC 267 ms
88,960 KB
testcase_30 AC 760 ms
129,156 KB
testcase_31 AC 527 ms
106,604 KB
testcase_32 AC 200 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
XY = [list(map(int,input().split())) for i in range(m)]


S = [[[],[]] for i in range(2)]

for x,y in XY:
    d = (x+y)%2
    S[d][0].append(y-x)
    S[d][1].append(x+y)

ans = 0

for t in range(2):
    sp = set(S[t][0])
    sm = set(S[t][1])
    L = []
    for p in sp:
        ans += n-abs(p)
        L.append([abs(p),1])
        L.append([2*n-abs(p)+1,-1])
    L.sort()
    sm = sorted(sm)
    count = 0
    now = 0
    for m in sm:
        while now < len(L) and L[now][0] <= m:
            count += L[now][1]
            now += 1

        base = n-abs(n+1-m)
        ans += base-count
print(ans)
0