Submission #103435

#TimeUsernameProblemLanguageResultExecution timeMemory
103435wilwxk수열 (BOI14_sequence)C++11
0 / 100
570 ms504 KiB
#include <bits/stdc++.h> using namespace std; const int MAXN=1e5+5; int v[MAXN]; int n; bool procura(int val, int k) { while(val>10) { if(val%10==k) return 1; val/=10; } return val%10==k; } bool testa(int k) { for(int i=1; i<=n; i++) { int cur=k+i-1; if(!procura(cur, v[i])) return 0; } return 1; } int main() { scanf("%d", &n); for(int i=1; i<=n; i++) scanf("%d", &v[i]); for(int i=1; i<=1e5; i++) { if(testa(i)) { printf("%d\n", i); return 0; } } }

Compilation message (stderr)

sequence.cpp: In function 'int main()':
sequence.cpp:25:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
sequence.cpp:26:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(int i=1; i<=n; i++) scanf("%d", &v[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...