# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20253 | 2016-09-08T06:54:46 Z | gamebaboo | 팩토리얼 세제곱들의 합 (YDX14_fact) | C | 0 ms | 0 KB |
#include <stdio.h> #include <math.h> int main(){ int a, k, n, t, s; scanf("%d", &n); scanf("%d", &k); s = 0; for (; ; n--) { if (n == 0) { s += 1; break; } else { for (t = n, a = n; t > 1; t--) { a *= (t - 1); } s += pow(a,k); } s %= 10; } printf("%d\n", s==10 ? 1:s); // 1 1 2 6 24 }