結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | WoqpDF |
提出日時 | 2022-12-09 21:47:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 84,624 KB |
最終ジャッジ日時 | 2024-10-14 21:29:33 |
合計ジャッジ時間 | 8,187 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 1,184 ms
11,136 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 1,476 ms
51,400 KB |
testcase_08 | AC | 1,486 ms
84,380 KB |
testcase_09 | AC | 532 ms
47,556 KB |
testcase_10 | AC | 1,309 ms
49,320 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,880 ms
49,364 KB |
testcase_13 | AC | 1,119 ms
29,168 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 1,356 ms
83,752 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 198 ms
19,904 KB |
testcase_20 | AC | 1,984 ms
84,624 KB |
testcase_21 | AC | 475 ms
47,380 KB |
testcase_22 | AC | 932 ms
84,056 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
ソースコード
n,m =map(int,input().split()) import collections llist = collections.defaultdict(int) rlist = collections.defaultdict(int) for i in range(m): l,r =map(int,input().split()) llist[l] += 1 rlist[r] += 1 for i in reversed(range(1,n+1)): if i == n: temp = llist[i] print(temp) else: temp += llist[i] temp -= rlist[i+1] print(temp)