Submission #596389

#TimeUsernameProblemLanguageResultExecution timeMemory
596389p41ntTuna (COCI17_tuna)C++17
50 / 50
1 ms316 KiB
#include <bits/stdc++.h> using namespace std; void __print(int x) { cerr << x; } void __print(long x) { cerr << x; } void __print(long long x) { cerr << x; } void __print(unsigned x) { cerr << x; } void __print(unsigned long x) { cerr << x; } void __print(unsigned long long x) { cerr << x; } void __print(float x) { cerr << x; } void __print(double x) { cerr << x; } void __print(long double x) { cerr << x; } void __print(char x) { cerr << '\'' << x << '\''; } void __print(const char *x) { cerr << '\"' << x << '\"'; } void __print(const string &x) { cerr << '\"' << x << '\"'; } void __print(bool x) { cerr << (x ? "true" : "false"); } template <typename T, typename V> void __print(const pair<T, V> &x) { cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}'; } template <typename T> void __print(stack<T> &x, int f = 0) { cerr << (!f ? "{" : ""); if (x.empty()) { cerr << '}'; return; } auto k = x.top(); x.pop(); cerr << (f++ ? "," : ""); __print(k); __print(x, f); x.push(k); } template <typename T> void __print(const T &x) { int f = 0; cerr << '{'; for (auto &i : x) cerr << (f++ ? "," : ""), __print(i); cerr << "}"; } void _print() { cerr << "]\n"; } template <typename T, typename... V> void _print(T t, V... v) { __print(t); if (sizeof...(v)) cerr << ", "; _print(v...); } #ifndef ONLINE_JUDGE #define debug(x...) \ cerr << "[" << #x << "] = ["; \ _print(x) #else #define debug(x...) #endif #define int long long int #define endl "\n" void solve() { int n, x; cin >> n >> x; int ans = 0; for (int i = 0; i < n; i++) { int a, b; cin >> a >> b; if (abs(a - b) <= x) ans += max(a, b); else { int c; cin >> c; ans += c; } } cout << ans << endl; } int32_t main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); //================================================================ int t = 1; while (t--) { solve(); } //================================================================ return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...