結果

問題 No.368 LCM of K-products
ユーザー kotamanegikotamanegi
提出日時 2016-04-29 23:59:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,403 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 91,196 KB
実行使用メモリ 394,312 KB
最終ジャッジ日時 2024-04-15 06:19:37
合計ジャッジ時間 41,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,090 ms
394,136 KB
testcase_01 AC 1,188 ms
394,012 KB
testcase_02 AC 1,132 ms
393,984 KB
testcase_03 AC 1,068 ms
394,056 KB
testcase_04 AC 1,088 ms
393,936 KB
testcase_05 AC 1,481 ms
393,984 KB
testcase_06 AC 1,061 ms
394,060 KB
testcase_07 WA -
testcase_08 AC 1,071 ms
394,112 KB
testcase_09 AC 1,092 ms
394,112 KB
testcase_10 AC 1,076 ms
394,112 KB
testcase_11 AC 1,071 ms
394,112 KB
testcase_12 AC 1,075 ms
393,984 KB
testcase_13 AC 1,056 ms
394,168 KB
testcase_14 AC 1,087 ms
394,148 KB
testcase_15 AC 1,098 ms
394,108 KB
testcase_16 AC 1,078 ms
394,248 KB
testcase_17 AC 1,069 ms
394,276 KB
testcase_18 AC 1,074 ms
394,136 KB
testcase_19 AC 1,069 ms
393,968 KB
testcase_20 AC 1,062 ms
393,980 KB
testcase_21 AC 1,054 ms
394,108 KB
testcase_22 AC 1,082 ms
394,076 KB
testcase_23 AC 1,066 ms
394,112 KB
testcase_24 AC 1,060 ms
394,112 KB
testcase_25 AC 1,078 ms
394,112 KB
testcase_26 AC 1,057 ms
394,112 KB
testcase_27 AC 1,049 ms
394,112 KB
testcase_28 AC 1,051 ms
394,112 KB
testcase_29 AC 1,142 ms
393,984 KB
testcase_30 WA -
testcase_31 AC 1,066 ms
394,240 KB
testcase_32 AC 1,060 ms
394,112 KB
testcase_33 WA -
testcase_34 AC 1,090 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] = {};
map<int, int> 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]++;
					goto ok;
				}
			}
		}
	ok:;
	}
	long long ans = 1;
	for (auto itr = hogee.begin();itr != hogee.end();++itr) {
		int a = itr->first;
		int b = itr->second;
		for (int i = 0;i < b&&i < k;++i) {
			ans = (ans * a)%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