結果
問題 | No.2335 Jump |
ユーザー | platinum |
提出日時 | 2022-08-23 12:09:07 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 393 bytes |
コンパイル時間 | 2,081 ms |
コンパイル使用メモリ | 202,756 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 04:04:59 |
合計ジャッジ時間 | 3,422 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; vector<int> A(N+1); rep(i,N) cin >> A[i+1]; int ans = 0; rep(i,N) ans += A[i+1] - A[i] - 1; cout << ans << endl; return 0; }