Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--)
{
int n, k;
cin >> n >> k;
vector<string> v(n);
for (auto &a : v)
cin >> a;
string max_str = "";
for (int ops = 0; ops <= k; ops++)
{
for (int i = 0; i < n - ops; i++)
{
string temp = "";
for (int j = 0; j <= ops; j++)
{
temp += v[i + j];
}
max_str = max(max_str, temp);
}
}
cout << max_str << '\n';
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1083 Number concatenation
- Contest
- Bangladesh 2.0
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-08-16 16:05:09
- Judged At
- 2024-10-03 13:28:44
- Judged By
- Score
- 25
- Total Time
- 1010ms
- Peak Memory
- 620.0 KiB