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