[백준 28352] 10! (C#, C++) - soo:bak
작성일 :
문제 링크
설명
팩토리얼의 계산과 단위 변환을 주제로하는 문제입니다.
입력으로 주어지는 n
에 대하여 팩토리얼을 계싼하고, 이를 문제에서 주어진 단위로 변환하여 출력합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Solution {
class Program {
static long Factorial(int n) {
long res = 1;
for (int i = 1; i <= n; i++)
res *= i;
return res;
}
static void Main(string[] args) {
var n = int.Parse(Console.ReadLine()!);
long secPerWeek = 7 * 24 * 60 * 60;
long factorialN = Factorial(n);
Console.WriteLine(factorialN / secPerWeek);
}
}
}
[ 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
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll factorial(int n) {
ll res = 1;
for(int i = 1; i <= n; i++)
res *= i;
return res;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
ll secPerWeek = 7 * 24 * 60 * 60;
ll factorialN = factorial(n);
cout << factorialN / secPerWeek << "\n";
return 0;
}