結果

問題 No.2462 七人カノン
ユーザー hiro1729hiro1729
提出日時 2023-09-09 07:37:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 92,148 KB
最終ジャッジ日時 2024-06-27 00:45:46
合計ジャッジ時間 10,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,952 KB
testcase_01 AC 49 ms
63,328 KB
testcase_02 AC 44 ms
61,036 KB
testcase_03 AC 61 ms
68,576 KB
testcase_04 AC 58 ms
66,076 KB
testcase_05 AC 60 ms
66,792 KB
testcase_06 AC 60 ms
67,704 KB
testcase_07 AC 57 ms
65,996 KB
testcase_08 AC 56 ms
65,952 KB
testcase_09 AC 57 ms
65,840 KB
testcase_10 AC 61 ms
68,540 KB
testcase_11 AC 62 ms
67,752 KB
testcase_12 AC 57 ms
67,764 KB
testcase_13 AC 276 ms
87,836 KB
testcase_14 AC 285 ms
88,756 KB
testcase_15 AC 272 ms
87,920 KB
testcase_16 AC 293 ms
89,220 KB
testcase_17 AC 295 ms
89,080 KB
testcase_18 AC 78 ms
81,440 KB
testcase_19 AC 77 ms
81,700 KB
testcase_20 AC 328 ms
92,148 KB
testcase_21 AC 320 ms
91,960 KB
testcase_22 AC 322 ms
91,592 KB
testcase_23 AC 326 ms
91,728 KB
testcase_24 AC 231 ms
86,692 KB
testcase_25 AC 335 ms
92,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = [0] * 100001
p = [[] for _ in range(n)]
for _ in range(q):
	i, s, t = map(int, input().split())
	a[s] += 1
	a[t] -= 1
	p[i - 1].append((s, t))
for t in range(100000):
	a[t + 1] += a[t]
for t in range(100001):
	if a[t]:
		a[t] = 1 / a[t]
for t in range(100000):
	a[t + 1] += a[t]
for i in p:
	ans = 0
	for s, t in i:
		ans += a[t - 1]
		if s:
			ans -= a[s - 1]
	print(ans)
0