Submission #31176

#TimeUsernameProblemLanguageResultExecution timeMemory
31176foul3rProsjek (COCI14_prosjek)C++14
50 / 50
0 ms2020 KiB
#include <bits/stdc++.h> using namespace std; long long A[110], B[110]; int main(){ long long n, i; scanf("%lld", &n); for(i=1;i<=n;i++){ scanf("%lld", &B[i]); A[i] = B[i]*i-(B[i-1])*(i-1); printf("%lld ", A[i]); } }

Compilation message (stderr)

prosjek.cpp: In function 'int main()':
prosjek.cpp:8:19: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld", &n);
                   ^
prosjek.cpp:10:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld", &B[i]);
                       ^
#Verdict Execution timeMemoryGrader output
Fetching results...