結果

問題 No.2154 あさかつの参加人数
ユーザー wanuiwanui
提出日時 2022-12-09 21:46:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 195 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-10-14 21:28:27
合計ジャッジ時間 43,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,261 ms
14,464 KB
testcase_06 AC 1,831 ms
14,720 KB
testcase_07 AC 1,109 ms
14,464 KB
testcase_08 AC 1,068 ms
14,592 KB
testcase_09 AC 351 ms
14,336 KB
testcase_10 AC 1,001 ms
14,464 KB
testcase_11 AC 1,940 ms
14,720 KB
testcase_12 AC 1,522 ms
14,704 KB
testcase_13 AC 965 ms
14,592 KB
testcase_14 AC 1,669 ms
14,592 KB
testcase_15 AC 989 ms
14,336 KB
testcase_16 AC 1,585 ms
14,592 KB
testcase_17 AC 1,860 ms
14,592 KB
testcase_18 AC 1,949 ms
14,464 KB
testcase_19 AC 155 ms
14,464 KB
testcase_20 AC 1,524 ms
14,720 KB
testcase_21 AC 302 ms
14,464 KB
testcase_22 AC 555 ms
14,592 KB
testcase_23 AC 1,784 ms
14,464 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
imos = [0]*500005
for _ in range(m):
    l,r=map(int,input().split())
    imos[n-l] += 1
    imos[n-r+1] -= 1
cum=0
for i in range(n):
    cum+=imos[i]
    print(cum)
0