Submission #40590724


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n;
  cin >> n;
  if (n <= 59) {  // nが59以下なら
    cout << "Bad" << endl;
  }
  else if (n <= 89) {  // そうでなくてnが89以下なら
    cout << "Good" << endl;
  }
  else if (n <= 99) {  // そうでなくてnが99以下なら
    cout << "Great" << endl;
  }
  else {  // そうでないなら
    cout << "Perfect" << endl;
  }
  
}

Submission Info

Submission Time
Task A - テスト評価
User rurun
Language C++ (GCC 9.2.1)
Score 100
Code Size 434 Byte
Status AC
Exec Time 6 ms
Memory 3592 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 4
AC × 19
Set Name Test Cases
Sample example_0.txt, example_1.txt, example_2.txt, example_3.txt
All example_0.txt, example_1.txt, example_2.txt, example_3.txt, handmade_0.txt, handmade_1.txt, handmade_2.txt, handmade_3.txt, handmade_4.txt, handmade_5.txt, random_0.txt, random_1.txt, random_2.txt, random_3.txt, random_4.txt, example_0.txt, example_1.txt, example_2.txt, example_3.txt
Case Name Status Exec Time Memory
example_0.txt AC 5 ms 3396 KiB
example_1.txt AC 2 ms 3532 KiB
example_2.txt AC 2 ms 3404 KiB
example_3.txt AC 2 ms 3580 KiB
handmade_0.txt AC 2 ms 3540 KiB
handmade_1.txt AC 2 ms 3416 KiB
handmade_2.txt AC 2 ms 3544 KiB
handmade_3.txt AC 6 ms 3404 KiB
handmade_4.txt AC 2 ms 3356 KiB
handmade_5.txt AC 2 ms 3356 KiB
random_0.txt AC 3 ms 3352 KiB
random_1.txt AC 3 ms 3416 KiB
random_2.txt AC 1 ms 3584 KiB
random_3.txt AC 2 ms 3520 KiB
random_4.txt AC 2 ms 3592 KiB