Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 2e5 + 10;
const ll MOD = 1e9 + 7;
void solve()
{
ll n, k;
cin >> n >> k;
vector<string>v(n);
for(ll i = 0; i < n; i++) {
cin >> v[i];
}
string ans = "";
for(ll i = 0; i < (n - k); i++) {
string temp = "";
for(ll j = i; j <= (i + k); j++) {
temp += v[j];
}
ans = max(ans, temp);
}
cout << ans << "\n";
}
int main()
{
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
int t;
cin >> t;
while(t--){
solve();
}
}
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 15:51:30
- Judged At
- 2024-10-03 13:29:41
- Judged By
- Score
- 30
- Total Time
- 5ms
- Peak Memory
- 724.0 KiB