結果

問題 No.368 LCM of K-products
ユーザー kotamanegikotamanegi
提出日時 2016-04-30 00:19:16
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,532 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 94,972 KB
実行使用メモリ 791,368 KB
最終ジャッジ日時 2024-04-15 07:53:48
合計ジャッジ時間 9,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:33:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |         scanf("%d%d", &n, &k);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#define  _SCL_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <cstdint>
#define MAX_MOD 1000000007
#define REP(i,n) for(int i = 0;i < n;++i)
using namespace std;
long long sosuu_counter[100000][1000] = {};
vector<int> whereis;
map<int,long long> hogee;
int main() {
	int n, k;
	scanf("%d%d", &n, &k);
	REP(i, n) {
		long long n;
		cin >> n;
		int cnt = 2;
		while (true) {
			if (n % cnt == 0) {
				sosuu_counter[cnt][i]++;
				n /= cnt;
			}
			else {
				cnt++;
				if (cnt > sqrt(n)) {
					hogee[n]++;
					whereis.push_back(n);
					goto ok;
				}
			}
		}
	ok:;
	}
	long long ans = 1;
	for (int i = 0;i < whereis.size();++i) {
		for (int q = 0;q < i;++q) {
			if (whereis[i] == whereis[q]) goto ah;
		}
		for (int q = 0;q < k && q < hogee[whereis[i]];++q) {
			ans = (ans*whereis[i]) % MAX_MOD;
		}
	ah:;
	}
	for (int i = 2;i <= 100000;++i) {
		sort(sosuu_counter[i], sosuu_counter[i] + 1000,greater<long long>());
		long long counter = 0;
		for (int q = 0;q < k;++q) {
			counter += sosuu_counter[i][q];
		}
		for (int q = 0;q < counter;++q) {
			ans = (ans*i) % MAX_MOD;
		}
	}
	cout << ans % MAX_MOD << endl;
	return 0;
}
0