mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:28:48 +00:00
P5681 [CSPJX2019]面积【民间数据】
R41434567
This commit is contained in:
parent
5227876e8d
commit
ce30a7194a
10
problem/P5681/P5681.cpp
Normal file
10
problem/P5681/P5681.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
long long a, b, c;
|
||||
cin >> a >> b >> c;
|
||||
cout << (a * a > b * c ? "Alice" : "Bob") << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user