結果

問題 No.2462 七人カノン
ユーザー hato336hato336
提出日時 2023-09-08 22:02:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 131,392 KB
最終ジャッジ日時 2024-06-26 15:02:07
合計ジャッジ時間 12,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
70,016 KB
testcase_01 AC 53 ms
72,704 KB
testcase_02 AC 48 ms
70,016 KB
testcase_03 AC 72 ms
79,488 KB
testcase_04 AC 67 ms
77,440 KB
testcase_05 AC 67 ms
77,696 KB
testcase_06 AC 69 ms
78,208 KB
testcase_07 AC 66 ms
77,184 KB
testcase_08 AC 65 ms
76,288 KB
testcase_09 AC 64 ms
75,648 KB
testcase_10 AC 73 ms
80,128 KB
testcase_11 AC 69 ms
77,952 KB
testcase_12 AC 69 ms
77,056 KB
testcase_13 AC 531 ms
121,800 KB
testcase_14 AC 526 ms
123,196 KB
testcase_15 AC 508 ms
121,672 KB
testcase_16 AC 577 ms
128,584 KB
testcase_17 AC 569 ms
129,256 KB
testcase_18 AC 71 ms
89,216 KB
testcase_19 AC 76 ms
89,472 KB
testcase_20 AC 527 ms
131,392 KB
testcase_21 AC 499 ms
130,488 KB
testcase_22 AC 521 ms
130,492 KB
testcase_23 AC 512 ms
130,108 KB
testcase_24 AC 350 ms
109,384 KB
testcase_25 AC 577 ms
128,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
event = []
x = []
for i in range(q):
    e,s,t = map(int,input().split())
    event.append((e,s,1))
    event.append((e,t,-1))
    x.append((e,s,t))
table = [0 for i in range(100000+1)]
temp = 0
event.sort(lambda x:x[1])
i = 0
for e,s,f in event:
    if f == 1:
        while i != s:
            table[i] = 1/temp if temp != 0 else 0
            i += 1
        temp += 1
    else:
        while i != s:
            table[i] = 1/temp if temp != 0 else 0
            i += 1
        temp -= 1

import itertools
ta = list(itertools.accumulate(table))
ta.append(0)
ans = [0 for i in range(n)]
for e,s,t in x:
    e -= 1
    ans[e] += ta[t-1]-ta[s-1]
print(*ans,sep='\n')
0