結果
問題 | No.2335 Jump |
ユーザー | kusaf_ |
提出日時 | 2023-06-02 21:36:32 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 2,333 ms |
コンパイル使用メモリ | 201,696 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-28 16:46:25 |
合計ジャッジ時間 | 2,792 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(0); ll n; cin >> n; vector<ll> v(n); for(ll i = 0; i < n; i++) cin >> v[i]; ll r = v[0] - 1; for(ll i = 0; i < n - 1; i++) r += v[i + 1] - v[i] - 1; cout << r << "\n"; }