結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | ikepyon |
提出日時 | 2022-12-27 11:03:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,877 bytes |
コンパイル時間 | 1,568 ms |
コンパイル使用メモリ | 169,028 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-05-01 15:54:54 |
合計ジャッジ時間 | 22,914 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #include <array> #include <atomic> #include <chrono> #include <condition_variable> #include <forward_list> #include <future> #include <initializer_list> #include <mutex> #include <random> #include <ratio> #include <regex> #include <scoped_allocator> #include <system_error> #include <thread> #include <tuple> #include <typeindex> #include <type_traits> #include <unordered_map> #include <unordered_set> #define whole(v) (v).begin(),(v).end() #define rwhole(v) (v).rbegin(),(v).rend() #define press(v) (v).erase(unique(whole(v)),(v).end()) #define Yes cout<<"Yes"<<endl; return 0 #define No cout<<"No"<<endl; return 0 #define vint vector<int> #define vll vector<ll> #define vpint vector<pair<int,int>> #define vvint vector<vector<int>> #define vvll vector<vector<ll>> #define pqint priority_queue<int> #define pqpint priority_queue<pair<int,int>> #define rpqint priority_queue<int,vector<int>,greater<int>> #define rpqpint priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> using namespace std; using ll = long long; int mod107 = 1000000007, mod998 = 998244353; string alphabet = "abcdefghijklmnopqrstuvwxyz", ALFHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //(a,b)と(c,d)の距離 double pyth(ll a, ll b, ll c, ll d) { double l = sqrt((a - c) * (a - c) + (b - d) * (b - d)); return l; } //aのb乗をmで割った余り(a,bは非負整数,mは自然数) int power(ll a, ll b, int m) { int k = 0, ans = 1; vector<ll> v(100); v[0] = a; for (int i = 1; i < 100; i++) v[i] = v[i - 1] * v[i - 1] % m; while (b > 0) { if (b % 2) ans = ans * v[k] % m; k++; b /= 2; } return ans; } //素数判定 O(sqrt(n)) bool prime_judge(ll n) { for (int i = 2; i <= sqrt(n); i++) { if (n % i == 0) { return false; } } return true; } int main() { int n, m; cin >> n >> m; vint l(m), r(m), ans(n + 2); for (int i = 0; i < m; i++) { cin >> l[i] >> r[i]; ans[l[i]]++; ans[r[i] - 1]--; } for (int i = n; i > 0; i--) { ans[i] += ans[i + 1]; cout << ans[i] << endl; } cout << endl; }