結果

問題 No.2154 あさかつの参加人数
ユーザー flippergoflippergo
提出日時 2024-10-04 16:22:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 80,804 KB
最終ジャッジ日時 2024-10-04 16:22:48
合計ジャッジ時間 13,280 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
80,384 KB
testcase_01 AC 350 ms
80,700 KB
testcase_02 AC 377 ms
80,656 KB
testcase_03 AC 364 ms
80,804 KB
testcase_04 AC 339 ms
80,536 KB
testcase_05 AC 231 ms
76,492 KB
testcase_06 AC 291 ms
78,072 KB
testcase_07 AC 207 ms
78,808 KB
testcase_08 AC 184 ms
79,048 KB
testcase_09 AC 94 ms
78,404 KB
testcase_10 AC 213 ms
78,676 KB
testcase_11 AC 312 ms
80,080 KB
testcase_12 AC 252 ms
78,556 KB
testcase_13 AC 181 ms
77,072 KB
testcase_14 AC 307 ms
78,984 KB
testcase_15 AC 184 ms
78,832 KB
testcase_16 AC 288 ms
79,076 KB
testcase_17 AC 323 ms
78,344 KB
testcase_18 AC 363 ms
78,936 KB
testcase_19 AC 87 ms
76,576 KB
testcase_20 AC 268 ms
79,336 KB
testcase_21 AC 96 ms
78,276 KB
testcase_22 AC 113 ms
80,072 KB
testcase_23 AC 333 ms
79,792 KB
testcase_24 AC 334 ms
79,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [0]*(N+1)
for _ in range(M):
    l,r = map(int,input().split())
    A[N-l] += 1
    A[N-r+1] -= 1
for i in range(1,N+1):
    A[i] += A[i-1]
for i in range(N):
    print(A[i])
0