Submission #1173388

#TimeUsernameProblemLanguageResultExecution timeMemory
1173388ezzzayFeast (NOI19_feast)C++20
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define ff first #define ss second #define pb push_back #define int long long const int N=6 signed main(){ int n,k; cin>>n>>k; int s=0; for(int i=1;i<=n;i++){ int a; cin>>a; s+=a; } cout<<s; }

Compilation message (stderr)

feast.cpp:8:1: error: expected ',' or ';' before 'signed'
    8 | signed main(){
      | ^~~~~~