結果

問題 No.2154 あさかつの参加人数
ユーザー hiragnhiragn
提出日時 2022-12-14 20:25:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,880 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 873 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 46,240 KB
最終ジャッジ日時 2024-11-08 12:03:15
合計ジャッジ時間 41,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,879 ms
46,188 KB
testcase_01 AC 1,858 ms
46,116 KB
testcase_02 AC 1,844 ms
46,112 KB
testcase_03 AC 1,866 ms
46,112 KB
testcase_04 AC 1,880 ms
46,240 KB
testcase_05 AC 1,087 ms
11,136 KB
testcase_06 AC 1,563 ms
25,960 KB
testcase_07 AC 923 ms
33,280 KB
testcase_08 AC 866 ms
36,772 KB
testcase_09 AC 250 ms
29,100 KB
testcase_10 AC 829 ms
31,040 KB
testcase_11 AC 1,601 ms
42,184 KB
testcase_12 AC 1,300 ms
31,408 KB
testcase_13 AC 831 ms
18,528 KB
testcase_14 AC 1,437 ms
30,156 KB
testcase_15 AC 813 ms
35,372 KB
testcase_16 AC 1,339 ms
34,228 KB
testcase_17 AC 1,574 ms
30,020 KB
testcase_18 AC 1,668 ms
36,532 KB
testcase_19 AC 127 ms
14,540 KB
testcase_20 AC 1,286 ms
37,516 KB
testcase_21 AC 211 ms
27,212 KB
testcase_22 AC 398 ms
43,188 KB
testcase_23 AC 1,507 ms
37,296 KB
testcase_24 AC 1,681 ms
41,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate


def main():
    n, m = map(int, input().split())

    lst = [0] * (n + 1)
    for _ in range(m):
        left, right = map(int, input().split())
        lst[n - left] += 1
        lst[n - right + 1] -= 1

    acc = list(accumulate(lst))
    print(*acc[:-1], sep="\n")


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