Kirigaya Kazuto 2016-09-13 04:40:54 +08:00 committed by GitHub
parent 038d6e0819
commit c3cf095561
1 changed files with 15 additions and 0 deletions

15
HDOJ/5874_qq_33184171.cpp Normal file
View File

@ -0,0 +1,15 @@
#include <bits/stdc++.h>
using namespace std;
using LL = long long;
int main()
{
LL m,n;
while(~scanf("%I64d %I64d",&m,&n))
{
LL ans = m/2*(m-m/2);
if( ans <= n) puts("T");
else puts("F");
}
return 0;
}