結果

問題 No.2462 七人カノン
ユーザー timitimi
提出日時 2023-09-18 05:01:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 142,040 KB
最終ジャッジ日時 2024-07-04 21:34:52
合計ジャッジ時間 11,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,316 KB
testcase_01 AC 40 ms
52,296 KB
testcase_02 AC 54 ms
52,400 KB
testcase_03 AC 61 ms
67,196 KB
testcase_04 AC 57 ms
66,900 KB
testcase_05 AC 57 ms
66,648 KB
testcase_06 AC 59 ms
67,228 KB
testcase_07 AC 57 ms
64,720 KB
testcase_08 AC 57 ms
64,488 KB
testcase_09 AC 51 ms
62,140 KB
testcase_10 AC 61 ms
68,628 KB
testcase_11 AC 60 ms
66,480 KB
testcase_12 AC 57 ms
66,092 KB
testcase_13 AC 313 ms
133,076 KB
testcase_14 AC 320 ms
133,860 KB
testcase_15 AC 298 ms
115,708 KB
testcase_16 AC 332 ms
136,156 KB
testcase_17 AC 332 ms
136,536 KB
testcase_18 AC 68 ms
77,212 KB
testcase_19 AC 68 ms
77,348 KB
testcase_20 AC 302 ms
95,860 KB
testcase_21 AC 287 ms
95,752 KB
testcase_22 AC 279 ms
95,624 KB
testcase_23 AC 285 ms
95,624 KB
testcase_24 AC 269 ms
128,772 KB
testcase_25 AC 364 ms
142,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int, input().split())
A=[];T=[]
for _ in range(Q):
  i,s,t=map(int, input().split())
  T.append(s)
  T.append(t)
  A.append((i,s,t))
  
T=sorted(list(set(T)))
D={}
for i in range(len(T)):
  D[T[i]]=i

B=[0]*(len(T)+1)
for i,s,t in A:
  s,t=D[s],D[t] 
  B[s]+=1;B[t]-=1

c=0;C=[]
for b in B:
  c+=b 
  C.append(c)

e=0;E=[0]
for i in range(len(T)-1):
  t=T[i+1]-T[i]
  if C[i]!=0:
    e+=t/C[i]
  E.append(e)

ans=[0]*N
for i,s,t in A:
  ans[i-1]+=E[D[t]]-E[D[s]]
for i in ans:
  print(i)
0