/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 328.0 KiB
#2 Wrong Answer 2ms 588.0 KiB
#3 Wrong Answer 2ms 588.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define nl '\n'



void solve()
{
    
    int n , k ; cin>> n >> k ;
    string aa[n+5];
    for(int i=1 ; i<=n ; i++){
        string x ; cin>> x ;
        aa[i] = x ;
    }
    string ans = "";
    for(int i=1 ; i<=n-k ; i++){
        string nt ="" ;
        for(int j=i ; j<=i+2 ; j++){
            nt += aa[j];
        }
        //cout<< nt << " " << i << " " << i+2 << nl;
        if(nt > ans){
            ans = nt ;
        }
    }
    
    cout<< ans << nl;
}

int32_t main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    
    int T ;
    cin >> T ;
    for (int tt = 1 ; tt <= T ; tt++)
    {
        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 16:03:52
Judged At
2024-11-11 03:16:16
Judged By
Score
5
Total Time
2ms
Peak Memory
588.0 KiB