| Task: | HQ9+ |
| Sender: | Gomhog |
| Submission time: | 2020-11-27 18:44:58 +0200 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 15 |
| #2 | ACCEPTED | 85 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2 | details |
| #2 | ACCEPTED | 0.01 s | 2 | details |
Code
#include <bits/stdc++.h>
typedef long long ll;
typedef long double ld;
#define F first
#define S second
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int tsts;
cin>>tsts;
for (int tst=0;tst<tsts;tst++) {
int n;
cin>>n;
while (n-494>=0) {
cout<<"9";
n-=494;
}
while (n) {
cout<<"H";
n--;
}
cout<<"\n";
}
}
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
| input |
|---|
| 100 10 96 42 77 ... |
| correct output |
|---|
| HHHHHHHHHH HHHHHHHHHHHHHHHHHHHHHHHHHHHHHH... |
| user output |
|---|
| HHHHHHHHHH HHHHHHHHHHHHHHHHHHHHHHHHHHHHHH... Truncated |
Test 2
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 100 76364 26254 35192 92572 ... |
| correct output |
|---|
| 999999999999999999999999999999... |
| user output |
|---|
| 999999999999999999999999999999... Truncated |
