제출 #1189195

#제출 시각아이디문제언어결과실행 시간메모리
1189195temptemptempArt Exhibition (JOI18_art)C++20
컴파일 에러
0 ms0 KiB

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;

#define int long long
#define pii pair<int , int>
#define pb push_back
#define F first
#define S second
const int mod = 1e9 + 7;
const int N = 1e5 + 5;

void solve()
{
    int n;
    cin >> n;
    vector<pii> v(n);
    for(auto& i : v)
        cin >> i.F >> i.S;
    sort(v.begin() , v.end());
    int x = 0 , s = 0 , ans = 0;
    for(auto i : v){
        x = min(x , s - i.F);
        s += i.S;
        ans = max(ans , s - i.F - x);
    }
    cout << ans << '\n';
}

signed main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int T = 1;
    //cin >> T;
    while(T--)
        solve();
}

컴파일 시 표준 에러 (stderr) 메시지

art.cpp:38:7: error: extended character   is not valid in an identifier
   38 |         solve();
      |       ^
art.cpp:38:7: error: extended character   is not valid in an identifier
art.cpp: In function 'int main()':
art.cpp:38:7: error: '\U000000a0\U000000a0solve' was not declared in this scope
   38 |         solve();
      |       ^~~~~~~