結果

問題 No.1997 X Lighting
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-01 22:51:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 130,704 KB
最終ジャッジ日時 2024-11-26 06:29:48
合計ジャッジ時間 11,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,072 KB
testcase_01 AC 39 ms
53,356 KB
testcase_02 AC 39 ms
52,332 KB
testcase_03 AC 40 ms
53,268 KB
testcase_04 AC 37 ms
52,916 KB
testcase_05 AC 77 ms
77,196 KB
testcase_06 AC 125 ms
85,392 KB
testcase_07 AC 44 ms
54,264 KB
testcase_08 AC 77 ms
77,052 KB
testcase_09 AC 70 ms
71,688 KB
testcase_10 AC 39 ms
53,476 KB
testcase_11 AC 40 ms
54,536 KB
testcase_12 AC 37 ms
52,576 KB
testcase_13 AC 161 ms
96,900 KB
testcase_14 AC 360 ms
130,404 KB
testcase_15 AC 236 ms
88,644 KB
testcase_16 AC 291 ms
94,716 KB
testcase_17 AC 612 ms
119,388 KB
testcase_18 AC 361 ms
99,904 KB
testcase_19 AC 697 ms
129,676 KB
testcase_20 AC 757 ms
126,208 KB
testcase_21 AC 741 ms
124,392 KB
testcase_22 AC 703 ms
130,536 KB
testcase_23 AC 402 ms
102,040 KB
testcase_24 AC 97 ms
77,764 KB
testcase_25 AC 736 ms
130,704 KB
testcase_26 AC 598 ms
119,368 KB
testcase_27 AC 627 ms
120,464 KB
testcase_28 AC 255 ms
90,336 KB
testcase_29 AC 250 ms
88,864 KB
testcase_30 AC 688 ms
129,412 KB
testcase_31 AC 472 ms
106,804 KB
testcase_32 AC 185 ms
83,780 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)+2,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