Submission #96697

#TimeUsernameProblemLanguageResultExecution timeMemory
96697nandonathanielKocka (COCI18_kocka)C++14
70 / 70
70 ms5808 KiB
#include<bits/stdc++.h> using namespace std; typedef long long LL; LL l[100005],r[100005],u[100005],d[100005]; int main(){ LL n; scanf("%ld",&n); for(int i=1;i<=n;i++){ scanf("%lld",&l[i]); } for(int i=1;i<=n;i++){ scanf("%lld",&r[i]); } for(int i=1;i<=n;i++){ scanf("%lld",&u[i]); } for(int i=1;i<=n;i++){ scanf("%lld",&d[i]); } int cnt=0; for(int i=1;i<=n;i++){ if(l[i]==-1 && r[i]!=-1)cnt++; if(l[i]!=-1 && r[i]==-1)cnt++; if(u[i]==-1 && d[i]!=-1)cnt++; if(u[i]!=-1 && d[i]==-1)cnt++; } if(cnt==0){ printf("DA\n"); } else printf("NE\n"); return 0; }

Compilation message (stderr)

kocka.cpp: In function 'int main()':
kocka.cpp:8:16: warning: format '%ld' expects argument of type 'long int*', but argument 2 has type 'LL* {aka long long int*}' [-Wformat=]
  scanf("%ld",&n);
              ~~^
kocka.cpp:8:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%ld",&n);
  ~~~~~^~~~~~~~~~
kocka.cpp:10:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&l[i]);
   ~~~~~^~~~~~~~~~~~~~
kocka.cpp:13:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&r[i]);
   ~~~~~^~~~~~~~~~~~~~
kocka.cpp:16:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&u[i]);
   ~~~~~^~~~~~~~~~~~~~
kocka.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld",&d[i]);
   ~~~~~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...