0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/Luogu/P1134/P1134.cpp

21 lines
359 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, ans = 1, a[] = {6, 8, 4, 2};
int main() {
cin >> n;
while (n) {
for (int i = 1; i <= n % 10; i++) {
if (i != 5) {
ans = ans * i % 10;
}
}
n = n / 5;
ans = ans * a[n % 4] % 10;
}
cout << ans << endl;
return 0;
}