Submission #16924

#TimeUsernameProblemLanguageResultExecution timeMemory
16924taehoon1018팩토리얼 세제곱들의 합 (YDX14_fact)C++98
0 / 1
1000 ms1280 KiB
#include <stdio.h> #include <math.h> #include <stdlib.h> int factorial(int n) { if (n < 1) return 1; else return n*factorial(n - 1); } int main(void) { int n, k, sum = 0, i, res; scanf("%d %d", &n, &k); for (i = 0; i <= n; i++) { sum += pow((double)factorial(i), k); } while (1) { res = sum % 10; if (res != 0) break; } printf("%d", res); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...