[백준 25238] 가희와 방어율 무시 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
문제에서 주어진 조건을 바탕으로 사칙 연산을 하여 풀이합니다.
문제에서 설명하는 몬스터의 방어율
, 유저의 방어율 무시 백분율
간의 관계를 이해하고, 이를 바탕으로 유저가 몬스터에게 데미지를 입힐 수 있는 지의 유무를 판단하는 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace Solution {
class Monster {
public int DefenseRate {get; set;} = 0;
}
class User {
public int DefenseIgnoreRate {get; set;} = 0;
}
class Program {
static void Main(string[] args) {
Monster monster = new Monster();
User user = new User();
string[]? input = Console.ReadLine()?.Split();
monster.DefenseRate = Convert.ToInt32(input?[0]);
user.DefenseIgnoreRate = Convert.ToInt32(input?[1]);
double monsterDefenseRateToUser
= monster.DefenseRate - (monster.DefenseRate * ((double)user.DefenseIgnoreRate / 100));
bool enableToAttack = false;
if (monsterDefenseRateToUser < 100)
enableToAttack = true;
if (enableToAttack) Console.WriteLine("1");
else Console.WriteLine("0");
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a, b; cin >> a >> b;
double reducedDef = a - a * (b / 100.0);
if (reducedDef < 100) cout << 1 << "\n";
else cout << 0 << "\n";
return 0;
}