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