반응형
<코드>
#include<iostream>
#include<algorithm>
using namespace std;
int n, t, ans;
int main()
{
cin >> t;
while (t--)
{
cin >> n;
ans = 1;
for (int i = 1; i <= n; i++)
{
ans *= i;
ans %= 100000;
while (ans % 10 == 0)
ans /= 10;
}
cout << ans % 10 << '\n';
}
}
비슷한 문제
반응형
'🧩PS > 🥈Nomal' 카테고리의 다른 글
[C/C++] 백준 1074번 - Z (분할정복) (0) | 2021.01.17 |
---|---|
[C/C++] 백준 17946번 - 피자는 나눌 수록 커지잖아요 (0) | 2021.01.17 |
[C/C++] 백준 2553번 -마지막 팩토리얼 수 (0) | 2021.01.17 |
[C/C++] 백준 2810번 - 컵홀더 (0) | 2021.01.16 |
[Python] 백준 14928번 - 큰 수 (BIG) (0) | 2021.01.15 |