Task: | Backpacking |
Sender: | AleksandrPolitov |
Submission time: | 2024-09-02 16:20:45 +0300 |
Language: | C++ (C++20) |
Status: | READY |
Result: | ACCEPTED |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
Compiler report
input/code.cpp:10:19: warning: overflow in conversion from 'double' to 'int' changes value from '4.0e+18' to '2147483647' [-Woverflow] 10 | const int LLINF = 4e18; // 4*10^18 is < 2^63-1 | ^~~~
Code
#include <bits/stdc++.h> using namespace std; #define rep(i, a, b) for(int i=a; i< (b); ++i) #define all(x) begin(x), end(x) #define sz(x) (int)(x).size() typedef long long ll; const int INF = 1e9; // 10^9 = 1B is < 2^31-1 const int LLINF = 4e18; // 4*10^18 is < 2^63-1 const double EPS = 1e-9; const ll MOD = 1e9+7; int main() { cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit); int a,b; std::cin >> a >> b; std::cout << a+b << std::endl; return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
3 5 |
correct output |
---|
8 |
user output |
---|
8 |
Test 2
Verdict: ACCEPTED
input |
---|
571335 750047 |
correct output |
---|
1321382 |
user output |
---|
1321382 |
Test 3
Verdict: ACCEPTED
input |
---|
744471 719178 |
correct output |
---|
1463649 |
user output |
---|
1463649 |
Test 4
Verdict: ACCEPTED
input |
---|
308833 436123 |
correct output |
---|
744956 |
user output |
---|
744956 |