Submission #887393

#TimeUsernameProblemLanguageResultExecution timeMemory
887393pccNice sequence (IZhO18_sequence)C++14
6 / 100
1 ms452 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define pll pair<ll,ll> #define pii pair<int,int> #define fs first #define sc second #define tlll tuple<ll,ll,ll> void solve(){ int n,m; cin>>n>>m; if(m>n){ cout<<m-1<<'\n'; for(int i = 1;i<m;i++)cout<<-1<<' ';cout<<'\n'; } else{ cout<<n-1<<'\n'; for(int i = 1;i<n;i++)cout<<1<<' ';cout<<'\n'; } return; } int main(){ ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); int t;cin>>t; while(t--)solve(); }

Compilation message (stderr)

sequence.cpp: In function 'void solve()':
sequence.cpp:17:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   17 |   for(int i = 1;i<m;i++)cout<<-1<<' ';cout<<'\n';
      |   ^~~
sequence.cpp:17:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   17 |   for(int i = 1;i<m;i++)cout<<-1<<' ';cout<<'\n';
      |                                       ^~~~
sequence.cpp:21:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   21 |   for(int i = 1;i<n;i++)cout<<1<<' ';cout<<'\n';
      |   ^~~
sequence.cpp:21:38: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   21 |   for(int i = 1;i<n;i++)cout<<1<<' ';cout<<'\n';
      |                                      ^~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...