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 << "-";
}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#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
AC × 2
AC × 10
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


2025-04-03 (Thu)
19:25:59 +00:00