結果

問題 No.2462 七人カノン
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-09-08 22:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 91,492 KB
最終ジャッジ日時 2024-06-26 15:54:27
合計ジャッジ時間 9,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,056 KB
testcase_01 AC 47 ms
62,336 KB
testcase_02 AC 45 ms
61,440 KB
testcase_03 AC 69 ms
70,016 KB
testcase_04 AC 60 ms
67,456 KB
testcase_05 AC 62 ms
67,584 KB
testcase_06 AC 62 ms
68,736 KB
testcase_07 AC 57 ms
66,944 KB
testcase_08 AC 59 ms
67,072 KB
testcase_09 AC 56 ms
66,816 KB
testcase_10 AC 61 ms
68,864 KB
testcase_11 AC 61 ms
68,352 KB
testcase_12 AC 61 ms
67,200 KB
testcase_13 AC 246 ms
89,952 KB
testcase_14 AC 249 ms
90,112 KB
testcase_15 AC 249 ms
89,216 KB
testcase_16 AC 252 ms
91,392 KB
testcase_17 AC 257 ms
91,492 KB
testcase_18 AC 78 ms
79,744 KB
testcase_19 AC 77 ms
80,072 KB
testcase_20 AC 289 ms
91,264 KB
testcase_21 AC 282 ms
91,136 KB
testcase_22 AC 281 ms
90,624 KB
testcase_23 AC 275 ms
90,624 KB
testcase_24 AC 194 ms
86,272 KB
testcase_25 AC 284 ms
91,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())

M = 10**5+5

imos = [0]*M

IST = [list(map(int,input().split())) for i in range(q)]

ans = [0]*n

for i,s,t in IST:
    imos[s] += 1
    imos[t] -= 1

score = [0]*M
for i in range(M-1):
    imos[i+1] += imos[i]
for i in range(M):
    if imos[i]:
        score[i] = 1/imos[i]
    score[i] += score[i-1]
for i,s,t in IST:
    i -= 1
    ans[i] += score[t-1]
    if s:
        ans[i] -= score[s-1]

for i in ans:
    print(i)
0