結果

問題 No.2462 七人カノン
ユーザー ShirotsumeShirotsume
提出日時 2023-09-08 21:41:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-06-26 14:35:54
合計ジャッジ時間 9,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,224 KB
testcase_01 AC 58 ms
70,016 KB
testcase_02 AC 50 ms
68,328 KB
testcase_03 AC 70 ms
76,120 KB
testcase_04 AC 64 ms
75,932 KB
testcase_05 AC 63 ms
75,648 KB
testcase_06 AC 64 ms
75,392 KB
testcase_07 AC 63 ms
74,240 KB
testcase_08 AC 66 ms
75,776 KB
testcase_09 AC 61 ms
74,368 KB
testcase_10 AC 64 ms
75,264 KB
testcase_11 AC 66 ms
75,520 KB
testcase_12 AC 63 ms
75,264 KB
testcase_13 AC 282 ms
94,184 KB
testcase_14 AC 272 ms
94,448 KB
testcase_15 AC 264 ms
94,052 KB
testcase_16 AC 308 ms
94,848 KB
testcase_17 AC 316 ms
94,592 KB
testcase_18 AC 90 ms
85,760 KB
testcase_19 AC 89 ms
85,632 KB
testcase_20 AC 225 ms
89,852 KB
testcase_21 AC 240 ms
89,856 KB
testcase_22 AC 237 ms
89,984 KB
testcase_23 AC 226 ms
90,000 KB
testcase_24 AC 216 ms
93,312 KB
testcase_25 AC 294 ms
93,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, q = mi()

start = [[] for _ in range(10 ** 5 + 1)]
end = [[] for _ in range(10 ** 5 + 1)]
for _ in range(q):
    i, s, t = mi()
    i -= 1
    start[s].append(i)
    end[t].append(i)

ans = [0] * n

counter = 0
now = 0
for t in range(10 ** 5 + 1):
    for v in start[t]:
        ans[v] -= counter
        now += 1
    for v in end[t]:
        ans[v] += counter
        now -= 1
    if now > 0:
        counter += 1 / now

for v in ans:
    print(v)
0