結果
問題 | No.2335 Jump |
ユーザー |
![]() |
提出日時 | 2022-08-23 12:12:33 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 47 ms / 2,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 2,195 ms |
コンパイル使用メモリ | 193,536 KB |
最終ジャッジ日時 | 2025-01-31 03:03:23 |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i = 0; i < (int)(n); i++)using namespace std;using LL = long long;using P = pair<int,int>;using vv = vector<vector<int>>;const int INF = (int)1e9;const LL LINF = (LL)1e18;int main(){int N;cin >> N;assert(1 <= N && N <= 100000);vector<int> A(N+1);rep(i,N) cin >> A[i+1];rep(i,N) assert(A[i] < A[i+1]);assert(A[N] <= INF);int ans = 0;rep(i,N) ans += A[i+1] - A[i] - 1;cout << ans << endl;return 0;}