結果

問題 No.2462 七人カノン
ユーザー miya145592miya145592
提出日時 2023-09-08 22:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-06-26 15:30:17
合計ジャッジ時間 10,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
74,496 KB
testcase_01 AC 65 ms
75,648 KB
testcase_02 AC 62 ms
74,240 KB
testcase_03 AC 86 ms
82,560 KB
testcase_04 AC 82 ms
81,024 KB
testcase_05 AC 81 ms
80,768 KB
testcase_06 AC 83 ms
81,024 KB
testcase_07 AC 79 ms
79,616 KB
testcase_08 AC 80 ms
79,616 KB
testcase_09 AC 77 ms
79,104 KB
testcase_10 AC 86 ms
82,432 KB
testcase_11 AC 85 ms
81,792 KB
testcase_12 AC 80 ms
80,000 KB
testcase_13 AC 272 ms
95,628 KB
testcase_14 AC 287 ms
100,736 KB
testcase_15 AC 266 ms
100,224 KB
testcase_16 AC 292 ms
102,400 KB
testcase_17 AC 286 ms
102,656 KB
testcase_18 AC 97 ms
90,880 KB
testcase_19 AC 97 ms
90,752 KB
testcase_20 AC 306 ms
102,272 KB
testcase_21 AC 313 ms
102,272 KB
testcase_22 AC 311 ms
101,760 KB
testcase_23 AC 316 ms
101,888 KB
testcase_24 AC 231 ms
97,664 KB
testcase_25 AC 318 ms
101,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
IST = [list(map(int, input().split())) for _ in range(Q)]
P = [0 for _ in range(10**5+1)]
for i, s, t in IST:
    P[s] += 1
    P[t] -= 1
S = [0]
for p in P:
    S.append(S[-1]+p)
M = [0]
for s in S:
    if s==0:
        M.append(M[-1])
    else:
        M.append(M[-1]+(1/s))
ans = [0 for _ in range(N)]
for i, s, t in IST:
    ans[i-1] += M[t+1]-M[s+1]
for a in ans:
    print(a)


0