Submission #480129


Source Code Expand

#include<iostream>
using namespace std;

int main(){
	int N;
	cin >> N;
	if (N < 60){
		cout << "Bad" << endl;
	}
	else if (N >= 60 && N < 90){
		cout << "Good" << endl;
	}
	else if (N >= 90 && N < 100){
		cout << "Great" << endl;
	}
	else if (N == 100){
		cout << "Perfect" << endl;
	}
	return 0;
}

Submission Info

Submission Time
Task A - テスト評価
User Poltol
Language C++ (GCC 4.9.2)
Score 100
Code Size 318 Byte
Status AC
Exec Time 28 ms
Memory 924 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 28 ms 792 KiB
example_1.txt AC 26 ms 804 KiB
example_2.txt AC 27 ms 788 KiB
example_3.txt AC 27 ms 916 KiB
handmade_0.txt AC 28 ms 672 KiB
handmade_1.txt AC 26 ms 796 KiB
handmade_2.txt AC 26 ms 920 KiB
handmade_3.txt AC 26 ms 920 KiB
handmade_4.txt AC 25 ms 916 KiB
handmade_5.txt AC 26 ms 800 KiB
random_0.txt AC 25 ms 916 KiB
random_1.txt AC 26 ms 808 KiB
random_2.txt AC 26 ms 804 KiB
random_3.txt AC 25 ms 924 KiB
random_4.txt AC 25 ms 800 KiB