Submission #64028811
Source Code Expand
Copy
#include <bits/stdc++.h>using namespace std;int main() {int N; cin >> N;if (N % 2 == 0) {int a = N / 2 - 1;for(int i = 0; i < a; i++) {cout << "-";}cout << "==";for(int i = 0; i < a; i++) {cout << "-";}cout << endl;}else {int a = N / 2;for(int i = 0; i < a; i++) {cout << "-";}
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; if (N % 2 == 0) { int a = N / 2 - 1; for(int i = 0; i < a; i++) { cout << "-"; } cout << "=="; for(int i = 0; i < a; i++) { cout << "-"; } cout << endl; } else { int a = N / 2; for(int i = 0; i < a; i++) { cout << "-"; } cout << "="; for(int i = 0; i < a; i++) { cout << "-"; } cout << endl; } }
Submission Info
Submission Time | |
---|---|
Task | A - Doors in the Center |
User | nekoha |
Language | C++ 20 (gcc 12.2) |
Score | 100 |
Code Size | 491 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3644 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt |
All | random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, sample_01.txt, sample_02.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
random_03.txt | AC | 1 ms | 3492 KB |
random_04.txt | AC | 1 ms | 3432 KB |
random_05.txt | AC | 1 ms | 3488 KB |
random_06.txt | AC | 1 ms | 3436 KB |
random_07.txt | AC | 1 ms | 3556 KB |
random_08.txt | AC | 1 ms | 3488 KB |
random_09.txt | AC | 1 ms | 3452 KB |
random_10.txt | AC | 1 ms | 3432 KB |
sample_01.txt | AC | 1 ms | 3644 KB |
sample_02.txt | AC | 1 ms | 3472 KB |