結果

提出番号 157
提出者 Luzhiled
言語 C++
提出日時 2017-06-30 22:54:37
問題名 (5)ポイントカード (Point Card)
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 8320KB
2 AC 100% 1ms 7536KB
3 AC 100% 1ms 7936KB
4 AC 100% 1ms 8080KB
5 AC 100% 2ms 8080KB
6 AC 100% 3ms 7744KB
7 AC 100% 2ms 7568KB

ソースコード

#include <bits/stdc++.h>
using namespace std;

#define fs first
#define sc second
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define pb emplace_back

using pii = pair<int, int>;
using vi = vector<int>;
using lint = long long;

const int inf = 1001001001;
const lint linf = 1001001001001001001ll;
const int mod = 1e9 + 7;
const int dx[]{0, 1, 0, -1, -1, -1, 1, 1}, dy[]{1, 0, -1, 0, -1, 1, -1, 1};

template<typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; } return a > b; }
template<typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; } return a < b; }
template<typename T> inline void print(const T &x, string s = "\n") { cout << x << s; }
template<typename T> inline void print(const vector<T> &v, string s = " ") 
{ rep(i, v.size()) cout << v[i] << (i + 1 == v.size() ? "\n" : s); }
inline bool inside(int y, int x, int H, int W) { return 0 <= y && y < H && 0 <= x && x < W; }
inline lint in() { lint x; std::cin>>x; return x; }

int main() {
	int n = in(), m = in();
	vi a;
	rep(i, m) { a.pb(in()); in(); }

	sort(all(a));
	int ans = 0;
	for (int i = 1; i < m; ++i) {
		ans += max(0, n - a[i]);
	}

	print(ans);
}