Submission #1110631

#TimeUsernameProblemLanguageResultExecution timeMemory
1110631vjudge1Tuna (COCI17_tuna)C++17
50 / 50
1 ms504 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n; int x; int puan=0; scanf("%d %d",&n,&x); int a,b,c; for(int i=0;i<n;i++){ scanf("%d %d",&a, &b); if(abs(a-b)>x){ scanf("%d",&c); puan+=c; } else{ puan+=max(a,b); } } printf("%d",puan); return 0; }

Compilation message (stderr)

tuna.cpp: In function 'int main()':
tuna.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |     scanf("%d %d",&n,&x);
      |     ~~~~~^~~~~~~~~~~~~~~
tuna.cpp:11:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |         scanf("%d %d",&a, &b);
      |         ~~~~~^~~~~~~~~~~~~~~~
tuna.cpp:13:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |             scanf("%d",&c);
      |             ~~~~~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...