結果

問題 No.2462 七人カノン
ユーザー lloyzlloyz
提出日時 2023-09-09 18:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-06-27 11:03:42
合計ジャッジ時間 11,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,512 KB
testcase_01 AC 59 ms
66,052 KB
testcase_02 AC 56 ms
64,512 KB
testcase_03 AC 69 ms
71,492 KB
testcase_04 AC 66 ms
69,688 KB
testcase_05 AC 66 ms
70,492 KB
testcase_06 AC 68 ms
70,400 KB
testcase_07 AC 68 ms
69,376 KB
testcase_08 AC 64 ms
69,888 KB
testcase_09 AC 63 ms
68,864 KB
testcase_10 AC 68 ms
71,168 KB
testcase_11 AC 67 ms
70,656 KB
testcase_12 AC 65 ms
69,760 KB
testcase_13 AC 314 ms
87,948 KB
testcase_14 AC 307 ms
88,532 KB
testcase_15 AC 290 ms
88,576 KB
testcase_16 AC 316 ms
88,928 KB
testcase_17 AC 321 ms
88,912 KB
testcase_18 AC 84 ms
80,964 KB
testcase_19 AC 87 ms
81,408 KB
testcase_20 AC 347 ms
91,664 KB
testcase_21 AC 360 ms
92,032 KB
testcase_22 AC 344 ms
91,188 KB
testcase_23 AC 350 ms
92,000 KB
testcase_24 AC 297 ms
87,836 KB
testcase_25 AC 365 ms
91,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP = [0 for _ in range(10**5 + 1)]
P = [[] for _ in range(10**5 + 1)]
for _ in range(q):
    i, s, t = map(int, input().split())
    i -= 1
    DP[s] += 1
    DP[t] -= 1
    P[i].append((s, t))

for t in range(10**5):
    DP[t + 1] += DP[t]
for t in range(10**5 + 1):
    if DP[t] > 0:
        DP[t] = 1 / DP[t]
for t in range(10**5):
    DP[t + 1] += DP[t]
for i in range(n):
    res = 0
    for s, t in P[i]:
        res += DP[t - 1]
        if s > 0:
            res -= DP[s - 1]
    print(res)
0