結果

問題 No.2154 あさかつの参加人数
ユーザー flygonflygon
提出日時 2022-12-09 21:28:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 103,792 KB
最終ジャッジ日時 2024-10-14 20:08:25
合計ジャッジ時間 11,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 406 ms
103,172 KB
testcase_01 AC 402 ms
103,168 KB
testcase_02 AC 400 ms
103,792 KB
testcase_03 AC 406 ms
103,168 KB
testcase_04 AC 400 ms
103,184 KB
testcase_05 AC 137 ms
76,520 KB
testcase_06 AC 282 ms
87,296 KB
testcase_07 AC 260 ms
91,532 KB
testcase_08 AC 262 ms
93,824 KB
testcase_09 AC 168 ms
86,912 KB
testcase_10 AC 231 ms
90,412 KB
testcase_11 AC 354 ms
98,816 KB
testcase_12 AC 284 ms
91,008 KB
testcase_13 AC 172 ms
82,332 KB
testcase_14 AC 290 ms
90,616 KB
testcase_15 AC 253 ms
94,764 KB
testcase_16 AC 299 ms
93,236 KB
testcase_17 AC 299 ms
90,496 KB
testcase_18 AC 343 ms
95,104 KB
testcase_19 AC 93 ms
79,476 KB
testcase_20 AC 306 ms
94,760 KB
testcase_21 AC 155 ms
85,888 KB
testcase_22 AC 234 ms
95,488 KB
testcase_23 AC 329 ms
95,544 KB
testcase_24 AC 368 ms
98,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
ans = [0]*(n+10)
for i in range(m):
  l,r = map(int,input().split())
  ans[n-l] += 1
  ans[n-r+1] -= 1

for i in range(1,n+10):
  ans[i] += ans[i-1]
ans = ans[:n]
print(*ans, sep = "\n")
0