結果

問題 No.2462 七人カノン
ユーザー 👑 rin204rin204
提出日時 2023-09-18 16:06:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 99,684 KB
最終ジャッジ日時 2024-07-05 06:33:52
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
67,384 KB
testcase_01 AC 49 ms
68,084 KB
testcase_02 AC 41 ms
67,544 KB
testcase_03 AC 55 ms
76,288 KB
testcase_04 AC 53 ms
73,592 KB
testcase_05 AC 53 ms
73,632 KB
testcase_06 AC 60 ms
74,508 KB
testcase_07 AC 52 ms
72,916 KB
testcase_08 AC 53 ms
73,284 KB
testcase_09 AC 50 ms
71,912 KB
testcase_10 AC 55 ms
74,508 KB
testcase_11 AC 56 ms
75,164 KB
testcase_12 AC 53 ms
72,188 KB
testcase_13 AC 195 ms
94,480 KB
testcase_14 AC 215 ms
95,596 KB
testcase_15 AC 196 ms
97,512 KB
testcase_16 AC 212 ms
99,684 KB
testcase_17 AC 211 ms
99,256 KB
testcase_18 AC 62 ms
87,008 KB
testcase_19 AC 63 ms
87,364 KB
testcase_20 AC 231 ms
99,464 KB
testcase_21 AC 230 ms
99,392 KB
testcase_22 AC 232 ms
99,252 KB
testcase_23 AC 227 ms
99,176 KB
testcase_24 AC 165 ms
94,000 KB
testcase_25 AC 236 ms
99,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
imos = [0] * 100001
ist = [list(map(int, input().split())) for _ in range(Q)]
for i, s, t in ist:
    imos[s] += 1
    imos[t] -= 1

for i in range(1, 100001):
    imos[i] += imos[i - 1]

tot = [0]
for i in imos:
    tot.append(tot[-1] + 1 / i if i else 0)

ans = [0] * n
for i, s, t in ist:
    ans[i - 1] += tot[t] - tot[s]

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