結果
問題 |
No.2335 Jump
|
ユーザー |
|
提出日時 | 2023-06-02 21:28:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 65 ms / 2,000 ms |
コード長 | 856 bytes |
コンパイル時間 | 4,126 ms |
コンパイル使用メモリ | 251,492 KB |
最終ジャッジ日時 | 2025-02-13 17:42:35 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repn(i,a,b) for (int i = (int)(a) ; i < (int)(b+1); i++) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() #define sz(x) ((int)(x).size()) #define uni(v) v.erase(unique(v.begin(), v.end()), v.end()); using ll = long long; using P = pair<int,int>; using mint = modint998244353; ostream& operator<< (ostream& os, const mint &x) {os << x.val(); return os;} #ifdef LOCAL #include <debug.hpp> #define debug(...) debug::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define debug(...) (static_cast<void>(0)) #endif int main(){ int n; cin >> n; vector<int> a(n); rep(i,n) cin >> a[i]; cout << max(0,*max_element(all(a)) - n) << endl; return 0; }