結果

問題 No.2462 七人カノン
ユーザー detteiuudetteiuu
提出日時 2024-12-22 03:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 100,360 KB
最終ジャッジ日時 2024-12-22 03:26:34
合計ジャッジ時間 9,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
68,460 KB
testcase_01 AC 48 ms
70,032 KB
testcase_02 AC 48 ms
69,088 KB
testcase_03 AC 65 ms
76,768 KB
testcase_04 AC 64 ms
75,444 KB
testcase_05 AC 60 ms
76,168 KB
testcase_06 AC 62 ms
75,220 KB
testcase_07 AC 57 ms
74,452 KB
testcase_08 AC 57 ms
73,532 KB
testcase_09 AC 57 ms
73,592 KB
testcase_10 AC 65 ms
76,244 KB
testcase_11 AC 62 ms
76,312 KB
testcase_12 AC 61 ms
75,172 KB
testcase_13 AC 255 ms
94,912 KB
testcase_14 AC 229 ms
95,048 KB
testcase_15 AC 234 ms
98,352 KB
testcase_16 AC 247 ms
100,028 KB
testcase_17 AC 260 ms
100,208 KB
testcase_18 AC 72 ms
87,904 KB
testcase_19 AC 68 ms
87,620 KB
testcase_20 AC 265 ms
100,204 KB
testcase_21 AC 303 ms
100,000 KB
testcase_22 AC 267 ms
100,360 KB
testcase_23 AC 265 ms
100,240 KB
testcase_24 AC 191 ms
94,564 KB
testcase_25 AC 293 ms
100,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
query = [list(map(int, input().split())) for _ in range(Q)]

imos = [0]*(10**5+1)
for I, S, T in query:
    imos[S] += 1
    imos[T] -= 1
for i in range(1, 10**5+1):
    imos[i] += imos[i-1]

for i in range(10**5+1):
    if 1 <= imos[i]:
        imos[i] = 1/imos[i]

cum = [0]
for i in range(10**5+1):
    cum.append(cum[-1]+imos[i])

def cumQ(L, R):
    return cum[R]-cum[L]

ans = [0]*N
for I, S, T in query:
    ans[I-1] += cumQ(S, T)

print(*ans, sep="\n")
0