Submission #17065113
Source Code Expand
#define _CRT_SECURE_NO_WARNINGS
#include <bits/stdc++.h>
#include <unordered_map>
#include <chrono>
#include <random>
using namespace std;
typedef long long ll;
//mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
void solve() {
int n;
cin >> n;
for (int i = 0; i < n; i++)
cout << "ACL";
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#if defined(_DEBUG)
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int q = 1;
//cin >> q;
for (; q > 0; q--) {
solve();
//cout << endl;
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - Repeat ACL |
| User | Zombie358 |
| Language | C++ (GCC 9.2.1) |
| Score | 100 |
| Code Size | 609 Byte |
| Status | AC |
| Exec Time | 7 ms |
| Memory | 3592 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | example0.txt |
| All | 000.txt, 001.txt, 002.txt, 003.txt, example0.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 000.txt | AC | 7 ms | 3536 KiB |
| 001.txt | AC | 2 ms | 3540 KiB |
| 002.txt | AC | 3 ms | 3516 KiB |
| 003.txt | AC | 3 ms | 3592 KiB |
| example0.txt | AC | 2 ms | 3568 KiB |