Submission #207729

#TimeUsernameProblemLanguageResultExecution timeMemory
207729DodgeBallManTarifa (COCI16_tarifa)C++14
50 / 50
5 ms376 KiB
#include <bits/stdc++.h> using namespace std; int main() { int x, n; scanf("%d %d", &x, &n); x *= n+1; for(int i = 0, ret; i < n; ++i) { scanf("%d", &ret); x -= ret; } printf("%d\n", x); }

Compilation message (stderr)

tarifa.cpp: In function 'int main()':
tarifa.cpp:5:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     int x, n; scanf("%d %d", &x, &n);
               ~~~~~^~~~~~~~~~~~~~~~~
tarifa.cpp:8:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &ret);
         ~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...