fun.reimu - [2020 Fun]Reimu


Version: v1

Submit Problemset 1000ms / 262144 KB
Difficulty:1.0x

Statement

Hakurei Reimu,the famous Shrine Maiden, has the superhuman ability to fight again Youkai. To dodge danmukus, she has the special ability to fly fast and stop. But, can your program can?

You are given a integer T. You need to stop the program as fast as possible after it runs T ms. Your program doesn't need to output anything or input anything else.

Task

Write a program that:

Input

One integer, T($0\leq T\leq 1000$)

Output

Nothing

Example

[In]
10
[Output]
[Explain]
If the program takes 15 ms to halt(t=5ms), it will have a rank S and 15pts will be given.

Scoring

There are 20 testcases.

If your program takes t extra ms to halt. Your ranking will be given as follows:

max tRankScore
<0Halt too early0
0SSS25
1SS20
5S15
20A10
50B8
100C5
200D3
500E2
999F1
1000F+50

Submit