結果

問題 No.368 LCM of K-products
ユーザー kotamanegikotamanegi
提出日時 2016-04-29 23:52:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,335 bytes
コンパイル時間 993 ms
コンパイル使用メモリ 86,604 KB
実行使用メモリ 394,240 KB
最終ジャッジ日時 2024-04-15 06:15:54
合計ジャッジ時間 43,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,163 ms
394,228 KB
testcase_01 AC 1,283 ms
394,208 KB
testcase_02 AC 1,231 ms
394,112 KB
testcase_03 AC 1,180 ms
394,036 KB
testcase_04 AC 1,197 ms
393,932 KB
testcase_05 AC 1,567 ms
393,984 KB
testcase_06 AC 1,163 ms
393,936 KB
testcase_07 WA -
testcase_08 AC 1,146 ms
394,112 KB
testcase_09 AC 1,137 ms
393,984 KB
testcase_10 AC 1,159 ms
394,240 KB
testcase_11 AC 1,167 ms
393,984 KB
testcase_12 AC 1,169 ms
393,984 KB
testcase_13 AC 1,142 ms
394,064 KB
testcase_14 AC 1,163 ms
394,072 KB
testcase_15 AC 1,191 ms
394,020 KB
testcase_16 AC 1,173 ms
394,136 KB
testcase_17 AC 1,156 ms
394,124 KB
testcase_18 AC 1,173 ms
394,072 KB
testcase_19 AC 1,139 ms
394,024 KB
testcase_20 AC 1,159 ms
394,164 KB
testcase_21 AC 1,137 ms
394,100 KB
testcase_22 AC 1,178 ms
394,056 KB
testcase_23 AC 1,145 ms
393,984 KB
testcase_24 AC 1,145 ms
394,112 KB
testcase_25 AC 1,145 ms
394,240 KB
testcase_26 AC 1,140 ms
394,240 KB
testcase_27 AC 1,150 ms
394,112 KB
testcase_28 AC 1,146 ms
394,112 KB
testcase_29 AC 1,149 ms
394,112 KB
testcase_30 WA -
testcase_31 AC 1,160 ms
394,112 KB
testcase_32 AC 1,169 ms
393,984 KB
testcase_33 WA -
testcase_34 AC 1,199 ms
394,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   32 |         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;
int sosuu_counter[110000][1000] = {};
vector<int> wagyaa;
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)) {
					wagyaa.push_back(n);
					goto ok;
				}
			}
		}
	ok:;
	}
	long long ans = 1;
	for (int i = 0;i < wagyaa.size();++i) {
		ans = ans*wagyaa[i] % MAX_MOD;
		ans = ans % MAX_MOD;
	}
	for (int i = 2;i <= 100000;++i) {
		sort(sosuu_counter[i], sosuu_counter[i] + 1000,greater<int>());
		int 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;
}
0