| Task: | WA on Buzzwords |
| Sender: | Aurelien |
| Submission time: | 2025-11-24 17:30:43 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.84 s | 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,100) {
cout << alpha[i%26] << alpha[j%26];
}
cout << " ";
}
cout << endl;
cout << q << endl;
REP(i,0,q) {
REP(j,0,100) {
cout << alpha[j%26] << alpha[i%26];
}
cout << "\n";
}
// REP(i,0,26) {
// cout << 'a'+i << endl;
// }
}