結果

問題 No.2154 あさかつの参加人数
ユーザー Taku000Taku000
提出日時 2023-01-28 15:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-06-28 18:54:04
合計ジャッジ時間 14,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 437 ms
80,896 KB
testcase_01 AC 418 ms
81,152 KB
testcase_02 AC 415 ms
80,640 KB
testcase_03 AC 418 ms
80,512 KB
testcase_04 AC 420 ms
80,640 KB
testcase_05 AC 235 ms
76,416 KB
testcase_06 AC 372 ms
78,464 KB
testcase_07 AC 249 ms
79,232 KB
testcase_08 AC 236 ms
79,488 KB
testcase_09 AC 120 ms
78,976 KB
testcase_10 AC 234 ms
79,104 KB
testcase_11 AC 375 ms
80,128 KB
testcase_12 AC 314 ms
79,232 KB
testcase_13 AC 218 ms
77,184 KB
testcase_14 AC 338 ms
78,592 KB
testcase_15 AC 224 ms
79,616 KB
testcase_16 AC 312 ms
78,848 KB
testcase_17 AC 367 ms
78,336 KB
testcase_18 AC 384 ms
79,488 KB
testcase_19 AC 102 ms
76,672 KB
testcase_20 AC 318 ms
79,360 KB
testcase_21 AC 111 ms
78,336 KB
testcase_22 AC 143 ms
80,256 KB
testcase_23 AC 362 ms
79,488 KB
testcase_24 AC 392 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

A = [0] * (N + 2)

for i in range(M):
    L, R = map(int, input().split())
    L = N - L
    R = N - R
    A[L] += 1
    A[R + 1] -= 1
for i in range(N):
    if i > 0:
        A[i] = A[i] + A[i - 1]
    print(A[i])
0