結果

問題 No.1997 X Lighting
ユーザー googol_S0googol_S0
提出日時 2022-07-01 21:48:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-11-26 04:40:14
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 42 ms
52,608 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 80 ms
76,672 KB
testcase_06 AC 125 ms
86,784 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 79 ms
76,800 KB
testcase_09 AC 71 ms
71,424 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 42 ms
53,120 KB
testcase_12 AC 42 ms
52,864 KB
testcase_13 AC 170 ms
98,944 KB
testcase_14 AC 220 ms
140,708 KB
testcase_15 AC 134 ms
88,448 KB
testcase_16 AC 146 ms
89,600 KB
testcase_17 AC 236 ms
130,944 KB
testcase_18 AC 170 ms
105,472 KB
testcase_19 AC 263 ms
142,636 KB
testcase_20 AC 265 ms
136,960 KB
testcase_21 AC 267 ms
136,960 KB
testcase_22 AC 263 ms
142,636 KB
testcase_23 AC 179 ms
105,344 KB
testcase_24 AC 92 ms
77,312 KB
testcase_25 AC 268 ms
142,548 KB
testcase_26 AC 241 ms
129,152 KB
testcase_27 AC 249 ms
129,152 KB
testcase_28 AC 144 ms
89,600 KB
testcase_29 AC 146 ms
88,284 KB
testcase_30 AC 270 ms
143,872 KB
testcase_31 AC 212 ms
115,712 KB
testcase_32 AC 123 ms
82,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
X=[list(map(int,input().split())) for i in range(M)]
A=[]
B=[]
for i in range(M):
  A.append(X[i][0]+X[i][1]-N-1)
  B.append(X[i][0]-X[i][1])
A=sorted(set(A))
B=sorted(set(B))
def f(X,Y):
  for i in range(len(X)):
    X[i]=abs(X[i])
  for i in range(len(Y)):
    Y[i]=abs(Y[i])
  X=sorted(X)
  Y=sorted(Y)
  ANS=0
  v=len(Y)
  for i in range(len(X)):
    while v!=0:
      if X[i]+Y[v-1]>=N:
        v-=1
      else:
        break
    ANS+=v
  return ANS

C=[[],[]]
D=[[],[]]
ANS=0
for i in range(len(A)):
  C[A[i]&1].append(A[i])
  ANS+=N-abs(A[i])
for i in range(len(B)):
  D[B[i]&1].append(B[i])
  ANS+=N-abs(B[i])
if N&1:
  D[0],D[1]=D[1][:],D[0][:]
print(ANS-(f(C[0],D[1])+f(C[1],D[0])))
0