結果

問題 No.2462 七人カノン
ユーザー miho-4miho-4
提出日時 2023-09-08 22:08:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-06-26 15:10:28
合計ジャッジ時間 9,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
61,056 KB
testcase_01 AC 56 ms
62,976 KB
testcase_02 AC 50 ms
60,672 KB
testcase_03 AC 73 ms
68,992 KB
testcase_04 AC 68 ms
67,584 KB
testcase_05 AC 69 ms
68,096 KB
testcase_06 AC 70 ms
67,968 KB
testcase_07 AC 67 ms
66,816 KB
testcase_08 AC 66 ms
66,560 KB
testcase_09 AC 64 ms
65,920 KB
testcase_10 AC 73 ms
68,736 KB
testcase_11 AC 73 ms
68,096 KB
testcase_12 AC 69 ms
67,456 KB
testcase_13 AC 253 ms
89,472 KB
testcase_14 AC 265 ms
89,728 KB
testcase_15 AC 257 ms
89,344 KB
testcase_16 AC 282 ms
91,136 KB
testcase_17 AC 276 ms
91,520 KB
testcase_18 AC 84 ms
80,128 KB
testcase_19 AC 86 ms
80,000 KB
testcase_20 AC 300 ms
91,008 KB
testcase_21 AC 307 ms
91,520 KB
testcase_22 AC 296 ms
91,008 KB
testcase_23 AC 296 ms
90,752 KB
testcase_24 AC 215 ms
86,272 KB
testcase_25 AC 297 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
L=[list(map(int,input().split())) for _ in range(q)]

T=[0]*(10**5+2)
for i,s,t in L:
  T[s]+=1
  T[t]-=1
g=[0]*(10**5+3)  
for i in range(1,10**5+2):
  T[i]+=T[i-1]
  if 0<T[i]:
    g[i]=1/T[i]
if 0<T[0]:
  g[0]=1/T[0]

for i in range(1,10**5+2):
  g[i]+=g[i-1]

ans=[0]*n
for i,s,t in L:
  ans[i-1]+=g[t-1]-g[s-1]
  
for e in ans:
  print(e)
0