Submission #604062

#TimeUsernameProblemLanguageResultExecution timeMemory
604062hyakupProsjek (COCI18_prosjek)C++17
0 / 50
0 ms212 KiB
#include <bits/stdc++.h> using namespace std; int main(){ int n; scanf("%d", &n); multiset<double> s; for( int i = 0; i < n; i++){ double g; scanf("%lf", &g); s.insert(g); } printf("sla"); }

Compilation message (stderr)

prosjek.cpp: In function 'int main()':
prosjek.cpp:7:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |     int n; scanf("%d", &n);
      |            ~~~~~^~~~~~~~~~
prosjek.cpp:12:24: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 |         double g; scanf("%lf", &g);
      |                   ~~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...