Submission #20252

#TimeUsernameProblemLanguageResultExecution timeMemory
20252gamebaboo팩토리얼 세제곱들의 합 (YDX14_fact)C++98
0 / 1
2 ms0 KiB
#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 }

Compilation message (stderr)

fact.cpp: In function 'int main()':
fact.cpp:7:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
fact.cpp:8:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &k);
                 ^
#Verdict Execution timeMemoryGrader output
Fetching results...