작성일 :

문제 링크

28927번 - Киноманы

설명

MaxMel 두 사사람이 각각 비디오를 본 총 시간을 비교하는 단순한 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var maxTimes = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();
      var melTimes = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();

      int maxTime = 3 * maxTimes[0] + 20 * maxTimes[1] + 120 * maxTimes[2];
      int melTime = 3 * melTimes[0] + 20 * melTimes[1] + 120 * melTimes[2];

      if (maxTime > melTime) Console.WriteLine("Max");
      else if (maxTime < melTime) Console.WriteLine("Mel");
      else Console.WriteLine("Draw");

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int t1, e1, f1, t2, e2, f2;
  cin >> t1 >> e1 >> f1 >> t2 >> e2 >> f2;

  int maxTime = 3 * t1 + 20 * e1 + 120 * f1;
  int melTime = 3 * t2 + 20 * e2 + 120 * f2;

  if (maxTime > melTime) cout << "Max\n";
  else if (maxTime < melTime) cout << "Mel\n";
  else cout << "Draw\n";

  return 0;
}