結果

問題 No.2154 あさかつの参加人数
ユーザー RuteRute
提出日時 2022-12-11 02:37:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 236 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-10-15 02:19:17
合計ジャッジ時間 42,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,169 ms
10,880 KB
testcase_06 AC 1,727 ms
19,072 KB
testcase_07 AC 1,085 ms
23,296 KB
testcase_08 AC 1,033 ms
25,216 KB
testcase_09 AC 366 ms
20,864 KB
testcase_10 AC 978 ms
22,144 KB
testcase_11 AC 1,905 ms
28,416 KB
testcase_12 AC 1,417 ms
22,016 KB
testcase_13 AC 899 ms
14,976 KB
testcase_14 AC 1,607 ms
21,504 KB
testcase_15 AC 963 ms
24,576 KB
testcase_16 AC 1,499 ms
23,680 KB
testcase_17 AC 1,785 ms
21,376 KB
testcase_18 AC 1,871 ms
25,088 KB
testcase_19 AC 149 ms
12,928 KB
testcase_20 AC 1,480 ms
25,600 KB
testcase_21 AC 300 ms
19,840 KB
testcase_22 AC 607 ms
28,672 KB
testcase_23 AC 1,749 ms
25,472 KB
testcase_24 AC 1,898 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int,input().split())
imos = [0 for x in range(N+10)]
for x in range(M):
  l,r = map(int,input().split())
  imos[N-l] += 1
  imos[N-r+1] -= 1
for x in range(1, N+10):
  imos[x] += imos[x-1]

for x in range(N):
  print(imos[x])
0