mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 12:10:46 +00:00
[Add] solved solutions
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int x;
|
||||
float y;
|
||||
cin >> x >> y;
|
||||
if (x%5 == 0 && (y - x) > 0.5)
|
||||
{
|
||||
cout << y - (x + 0.5) << endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
cout << y << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user