aboutsummaryrefslogtreecommitdiff
path: root/store/works/life/chuanzhi-cup/contest/2.cpp
blob: 358e7fc1f6dc5496c4ebaf943ab3a77bac8a4952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <cmath>
#include <cstdio>

int main() {
  int x;
  std::scanf("%d", &x);

  double gpa;

  if (x >= 90)
    gpa = 4.0;
  else if (x >= 60) {
    gpa = (x - 50.0) / 10.0;
  } else {
    int s = std::floor(std::sqrt(x) * 10.0);
    if (s >= 90)
      gpa = 4.0;
    else if (s >= 60) {
      gpa = (s - 50.0) / 10.0;
    } else {
      gpa = 0;
    }
  }

  std::printf("%.1f", gpa);

  return 0;
}