結果

問題 No.2154 あさかつの参加人数
ユーザー iseeisee
提出日時 2022-12-09 21:26:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-10-14 19:47:51
合計ジャッジ時間 8,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
80,128 KB
testcase_01 AC 244 ms
80,128 KB
testcase_02 AC 253 ms
80,000 KB
testcase_03 AC 251 ms
80,128 KB
testcase_04 AC 243 ms
80,128 KB
testcase_05 AC 133 ms
76,032 KB
testcase_06 AC 194 ms
77,696 KB
testcase_07 AC 153 ms
78,592 KB
testcase_08 AC 160 ms
79,488 KB
testcase_09 AC 99 ms
78,080 KB
testcase_10 AC 147 ms
78,208 KB
testcase_11 AC 221 ms
80,000 KB
testcase_12 AC 199 ms
78,336 KB
testcase_13 AC 139 ms
76,800 KB
testcase_14 AC 210 ms
78,720 KB
testcase_15 AC 150 ms
79,104 KB
testcase_16 AC 200 ms
78,592 KB
testcase_17 AC 214 ms
78,208 KB
testcase_18 AC 220 ms
78,976 KB
testcase_19 AC 81 ms
76,544 KB
testcase_20 AC 203 ms
79,104 KB
testcase_21 AC 88 ms
77,824 KB
testcase_22 AC 122 ms
80,384 KB
testcase_23 AC 209 ms
78,976 KB
testcase_24 AC 233 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def main():
    # 入力
    N, M = map(int, input().split())
    # 計算・出力
    S = [0]*(N+1)
    for _ in range(M):
        L, R = map(int, input().split())
        S[R-1] += 1
        S[L] -= 1
    for i in range(N):
        S[i+1] += S[i]
    S.pop()
    for ans in reversed(S):
        print(ans)

if __name__ == "__main__":
    main()
0