T124267 Special Judge
题目描述
```cpp
bool randbool() {
return rand() & 1;
}
int f(int x) {
x = randbool() ? x + 6 : x - 6;
if (x < 0) x += 101;
if (x > 100) x -= 101;
x = x * 37 % 101;
x = randbool() ? x : 100 - x;
return x;
}
int main() {
int x = read(0, 100);
int a = f(x), b = f(f(x)), c = f(f(f(x)));
int score = max(min(a, b), c);
write(score);
return 0;
}
```
输入格式
无
输出格式
无