Submission #315044

#TimeUsernameProblemLanguageResultExecution timeMemory
315044yjojdkgk5bpCostinland (info1cup19_costinland)C++14
11.68 / 100
1090 ms26544 KiB
#include <bits/stdc++.h> #define ll long long #define sec second #define ft first #define pb push_back using namespace std; ll k,dp[50][50],sum1[50][50],sum2[50][50],mx; vector<pair<int,int>> p; int ans[50][50]; int main() { cin >> k; dp[0][1]=1; for(int i=1; i<33; i++) for(int j=1; j<33; j++) { dp[i][j]=dp[i-1][j]+dp[i][j-1]; sum1[i][j]=sum1[i-1][j]+dp[i][j]; sum2[i][j]=sum2[i][j-1]+dp[i][j]; }/* for(int i=32; i&&k; i--) for(int j=i; j&&k; j--) { if(sum1[i][j]+sum2[i][j]<=k) {//cout << sum1[i][j]+sum2[i][j] << ' '; k-=sum1[i][j]+sum2[i][j]; p.pb({i,j}); } }*/ cout << 2 << ' '<< k << '\n'; for(int i=0; i<k-1; i++) cout << 'X'; cout << "d\n"; for(int i=0; i<k-1; i++) cout << 'r'; cout << "."; return 0; }

Compilation message (stderr)

costinland.cpp: In function 'int main()':
costinland.cpp:32:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   32 |  for(int i=0; i<k-1; i++) cout << 'X'; cout << "d\n";
      |  ^~~
costinland.cpp:32:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   32 |  for(int i=0; i<k-1; i++) cout << 'X'; cout << "d\n";
      |                                        ^~~~
costinland.cpp:33:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   33 |  for(int i=0; i<k-1; i++) cout << 'r'; cout << ".";
      |  ^~~
costinland.cpp:33:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   33 |  for(int i=0; i<k-1; i++) cout << 'r'; cout << ".";
      |                                        ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...