Submission details
Task:WA on Buzzwords
Sender:Aurelien
Submission time:2025-11-24 17:29:55 +0200
Language:C++ (C++17)
Status:READY
Result:
Test results
testverdicttime
#1--details

Code

#include <bits/stdc++.h>


using namespace std;
typedef long long ll;

#define REP(i,a,b) for (ll i = a; i < b; i++)


int main() {
    string alpha = "azertyuiopqsdfghjklmwxcvbn";
    ll n = 1000;
    ll q = 100000;
    REP(i,0,n) {
        REP(j,0,25000) {
            cout << alpha[i%26] << alpha[j%26];
        }  
        cout << " ";
    }

    cout << endl;
    cout << q << endl;

    REP(i,0,q) {
        REP(j,0,25000) {
            cout << alpha[j%26] << alpha[i%26];
        }  
        cout << "\n";    
    }

    // REP(i,0,26) {
    //     cout << 'a'+i << endl;
    // }
    

}

Test details

Test 1

Verdict:

input
2

correct output
fumaarihappo on orgaaninen yhd...

user output
(empty)