[백준 28248] Deliv-e-droid (C#, C++) - soo:bak
작성일 :
문제 링크
설명
입력으로 주어지는 짐의 개수와 충돌 횟수를 바탕으로, 최종 점수를 계산하여 출력하는 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Solution {
class Program {
static void Main(string[] args) {
var p = int.Parse(Console.ReadLine()!);
var c = int.Parse(Console.ReadLine()!);
var score = 50 * p - 10 * c;
if (p > c) score += 500;
Console.WriteLine(score);
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int p, c; cin >> p >> c;
int score = 50 * p - 10 * c;
if (p > c) score += 500;
cout << score << "\n";
return 0;
}