mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-25 07:51:58 +00:00
parent
208a2c73b5
commit
05abb87d52
21
AtCoder/ABC243/A/A.cpp
Normal file
21
AtCoder/ABC243/A/A.cpp
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
int v, a, b, c;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin >> v >> a >> b >> c;
|
||||||
|
v %= a + b + c;
|
||||||
|
if (v < a) {
|
||||||
|
cout << "F" << endl;
|
||||||
|
} else if (v < a + b) {
|
||||||
|
cout << "M" << endl;
|
||||||
|
} else {
|
||||||
|
cout << "T" << endl;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user