| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 8557 | a555 | 팩토리얼 세제곱들의 합 (YDX14_fact) | C++98 | 0 ms | 1676 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <iomanip>
#include <stdlib.h>
#include <stdio.h>
#include <cstring>
#include <cstdlib>
#include <ctime>
#include <algorithm>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <map>
#include <math.h>
#include <bitset>
#include <numeric>
#pragma warning(disable:4996)
#define REP(variable, repeatnumber) for(int variable=0; variable<(repeatnumber); ++variable)
#define FOR(variable, start, end) for(int variable=(start); variable<=(end); ++variable)
#define RFOR(variable, start, end) for(int variable=(start); variable>=(end); --variable)
#define ULL unsigned long long
#define LL long long 
using namespace std; // 700B
int n, k, p;
int ma(int r){
	int a = r;
	while (1){
		if (a % 10 != 0){
			a = a % 10;
			break;
		}
		a /= 10;
	}
	return a;
}
int fun1(int n, int k){
	int a = 1, r = 1;
	FOR(i, 1, n) a *= i;
	REP(i, k) r *= a;
	return r;
}
int fun(int n, int k){
	int a = 1;
	FOR(i, 1, n){
		a += fun1(i, k);
		//cout << i << " " << fun1(i, k) <<" "<< a << endl;
	}
	if(a!=0)a = ma(a);
	return a;
}
int main()
{	
	scanf("%d%d", &n, &k);
	if (n > 4) n = 4;
	printf("%d\n", fun(n, k));
	return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
