mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 5874_qq_33184171.cpp
From http://blog.csdn.net/qq_33184171/article/details/52496677
This commit is contained in:
parent
038d6e0819
commit
c3cf095561
15
HDOJ/5874_qq_33184171.cpp
Normal file
15
HDOJ/5874_qq_33184171.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user