U518890 【娱乐】你谷将五彩斑斓
题目背景
~~B站上的弹幕,触发了我的灵感。自己出的题,怎么做也只能拿 75 分……~~
以前做题时经常 `MLE`,现在倒不会写了,~~谁来教?~~
题目描述
众所周知,~~洛谷的~~评测结果分为很多种,如 `AC`,`WA`,`TLE` 等等。
今天你需要编写一个程序,实现按照输入的内容,使程序作出对应的状态。
输入格式
输入仅一行,为 `AC`,`WA`,`TLE`,`MLE` 中的一个。
输出格式
若输入 `AC`,输出 `AC` 并正常退出。
若输入 `WA`,输出不是 `AC` 的内容并正常退出。
若输入 `TLE`,请让程序超过本题时间限制。
若输入 `MLE`,请让程序超过本题内存限制。
说明/提示
计分脚本:
```plain
@total_score = 0;
@score_per = 25;
@score_full = 100;
if (@status1 == AC); then
@score1 = @score_per;
@total_score = @total_score + @score1;
fi
if (@status2 == WA); then
@score2 = @score_per;
@total_score = @total_score + @score2;
fi
if (@status3 == TLE); then
@score3 = @score_per;
@total_score = @total_score + @score3;
fi
if (@status4 == MLE); then
@score4 = @score_per;
@total_score = @total_score + @score4;
fi
if (@total_score == @score_full); then
@final_status = AC;
@final_time = @time1;
@final_memory = @memory1;
else
@final_status = UNAC;
@final_time = @time1;
@final_memory = @memory1;
fi
```