답안 #28314

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
28314 2017-07-16T04:38:42 Z 이제 내가 두목이다~(#1175, exqt, kshy9598) 포도주 시음 (FXCUP2_wine) C++11
0 / 1
0 ms 2180 KB
#include <iostream>
#include <cstdio>
#include <string>
#include <sstream>
#include <algorithm>
#include <set>
#include <numeric>
#include <cmath>
#include <map>
#include <vector>
#include <queue>
#include <stack>
#include <cstring>
#include <queue>
#include <numeric>
#include <iomanip>
#define ll long long
using namespace std;
// for(int p=Set;p;p=(p-1)&Set)  부분집합원소순회
//cout<<fixed<<setprecision(11)<<(double)m/z<<"\n";
int Gcd(int a,int b){
    if(b==0)return a;
    return Gcd(b,a%b);
} //오버플로우조심
int Lcm(int a,int b){
    return (a*b)/Gcd(a,b);
}//오버 플로우 조심
const int MAXN=200001;
long long ans=0;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n,m; cin>>n>>m;
    long long before=0;
    for(int i=1;i<=n;i++){
        ll num; cin>>num;
        if(num>before){
            ans+=num-before;
            before=num;
        }
        else{
            before=num;
        }
    }
    cout<<ans;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 2180 KB Output is correct
2 Correct 0 ms 2180 KB Output is correct
3 Incorrect 0 ms 2180 KB Output isn't correct
4 Halted 0 ms 0 KB -