# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15395 | yukariko | 님 무기가 좀 나쁘시네여 (kriii3_S) | C++98 | 0 ms | 1720 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
double battle(int *a)
{
double ret;
double attack = a[0];
double power = a[1];
double crit_per = a[2] / 100.0;
double crit_pow = a[3] / 100.0;
double speed = a[4] / 100.0;
ret = attack * (1.0 + (power / 100.0)) * ((1.0 - min(crit_per, 1.0)) + min(crit_per, 1.0) * crit_pow) * (1.0 + speed);
return ret;
}
int main()
{
int a[2][5];
for(int i=0; i < 2; i++)
for(int j=0; j < 5; j++)
cin >> a[i][j];
int b[2][5];
for(int i=0; i < 2; i++)
for(int j=0; j < 5; j++)
cin >> b[i][j];
for(int i=0; i < 2; i++)
{
double before = battle(a[i]);
for(int j=0; j < 5; j++)
{
a[i][j] -= b[i][j];
a[i][j] += b[i^1][j];
}
double after = battle(a[i]);
if(after < before)
cout << "-" << "\n";
else if(after - before < 1e-6)
cout << "0" << "\n";
else
cout << "+" << "\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |