/ AKIOI OJ /

记录详情

Compile Error

/in/foo.cc:1:26: warning: extra tokens at end of #include directive
 #include <bits/stdc++.h> using namespace std; int n, Mx[10000010]; long long ans; int main() {    ios::sync_with_stdio(false);    cin.tie(NULL);    cin >> n;    for (int x, y, i = 1; i <= n; i++) {        cin >> x >> y;        x /= 2, y /= 2;        Mx[x] = max(Mx[x], y);    }    for (int h = 0, i = 10000000; i >= 1; i--) {        h = max(h, Mx[i]);        ans += h;    }    cout << ans * 4 << '\n';    return 0; }
                          ^~~~~
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status

信息

递交者
类型
递交
题目
P1011 灰灰的液体♂
语言
C++
递交时间
2023-10-09 16:44:31
评测时间
2023-10-09 16:44:31
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes