結果
| 問題 |
No.2335 Jump
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2023-06-02 21:32:47 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 2,000 ms |
| コード長 | 331 bytes |
| コンパイル時間 | 1,912 ms |
| コンパイル使用メモリ | 192,608 KB |
| 最終ジャッジ日時 | 2025-02-13 17:45:27 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
int r = 0, p = 0;
for (int i = 0; i < n; i++) {
int a;
cin >> a;
r += a - p - 1;
p = a;
}
cout << r << endl;
return 0;
}
merom686