/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 444.0 KiB
#2 Accepted 536ms 616.0 KiB
#3 Accepted 541ms 620.0 KiB
#4 Wrong Answer 525ms 604.0 KiB
#5 Accepted 531ms 612.0 KiB
#6 Accepted 531ms 616.0 KiB
#7 Wrong Answer 636ms 604.0 KiB

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-11-11 03:16:10
Judged By
Score
25
Total Time
636ms
Peak Memory
620.0 KiB