Submission #480654


Source Code Expand

def exp(num)
  a = ""
  if num <= 59
    a = 'Bad'
  elsif num <= 89
    a = 'Good'
  elsif num <= 99
    a = 'Great'
  else
    a = 'Perfect'
  end
end
num = STDIN.gets.chomp.to_i

puts exp(num)

Submission Info

Submission Time
Task A - テスト評価
User mizukmb
Language Ruby (2.1.5p273)
Score 100
Code Size 209 Byte
Status AC
Exec Time 65 ms
Memory 5016 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 63 ms 4968 KiB
example_1.txt AC 65 ms 4968 KiB
example_2.txt AC 62 ms 4972 KiB
example_3.txt AC 59 ms 4972 KiB
handmade_0.txt AC 58 ms 4972 KiB
handmade_1.txt AC 60 ms 4968 KiB
handmade_2.txt AC 62 ms 5016 KiB
handmade_3.txt AC 64 ms 4964 KiB
handmade_4.txt AC 65 ms 4936 KiB
handmade_5.txt AC 65 ms 4972 KiB
random_0.txt AC 63 ms 4968 KiB
random_1.txt AC 61 ms 4968 KiB
random_2.txt AC 61 ms 4968 KiB
random_3.txt AC 59 ms 4972 KiB
random_4.txt AC 60 ms 4964 KiB