結果

問題 No.365 ジェンガソート
ユーザー Knots
提出日時 2020-04-16 12:07:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 167,560 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 19:14:25
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
using namespace std;

const int INF = 1e9;
const int MOD = 1e9+7;
const ll LINF = 1e18;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) for(int i=0;i<(n);++i)
#define REPR(i,n) for(int i=n;i>=0;i--)
#define ALL(v) (v.begin(),v.end())
#define COUT(x) cout<<(x)<<'\n'


int main(){
    int n;
    cin >> n;
    int a[n];
    REP(i,n){
        cin >> a[i];
    }
    int max1 = a[0];
    int count = a[0]-1;
    REP(i,n){
        if(max1<a[i]){
            count += a[i]-max1-1;
            max1 = a[i];
        }
    }
    COUT(count);
    return 0;
}
0