結果

問題 No.6 使いものにならないハッシュ
ユーザー tarakojo1019tarakojo1019
提出日時 2021-01-18 17:12:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,879 bytes
コンパイル時間 1,310 ms
コンパイル使用メモリ 124,956 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 06:15:44
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 9 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<algorithm>
#include<stdint.h>
#include<vector>
#include<deque>
#include<stack>
#include<functional>
#include<string>
#include<numeric>
#include<cstring>
#include<random>
#include<array>
#include<fstream>
#include<iomanip>
#include<list>
#include<set>
#include<map>
#include<unordered_map>
#include<unordered_set>
#include<bitset>
#include<queue>

/*
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
*/

using namespace std;

using ll = long long;
using ull = unsigned long long;

#define REP(i,a,b) for(ll i = a; i < b; ++i)
#define PRI(s) std::cout << s << endl
#define PRIF(v, n) printf("%."#n"f\n", (double)v)

template<typename A, typename B>void mins(A& a, const B& b) { a = min(a, (A)b); };
template<typename A, typename B>void maxs(A& a, const B& b) { a = max(a, (A)b); };



//素因数分解
template<typename T> void factorize(T n, std::vector<std::pair<T, int>>& ans) {
	for (T i = 2; i * i <= n; ++i) {
		if (n % i != 0) continue;
		ans.emplace_back(i, 0);
		while (n % i == 0) {
			n /= i;
			ans.back().second++;
		}
	}
	if (n != 1) ans.emplace_back(n, 1);
}


int main() {

	ll K, N; cin >> K >> N;
	vector<bool> E(N + 1, true);
	E[0] = false;
	E[1] = false;
	REP(i, 2, N + 1) {
		if (!E[i]) continue;
		for (int j = 2; j * i <= N; ++j) E[j * i] = false;
	}
	vector<ll> P;
	REP(i, 0, N + 1) if (E[i])P.push_back(i);

	vector<ll> S(P.size());
	REP(i, 0, P.size()) {
		ll s = P[i];
		do {
			ll tmp = 0;
			while (s > 0) tmp += s % 10, s /= 10;
			s = tmp;
		} while (s >= 10);
		S[i] = s;
	}

	ll ansn = 0;
	ll ansp = -1;
	REP(i, 0, P.size()) {
		unordered_set<ll> mp;
		for (int j = 0; j < 10 && i + j < P.size(); ++j) {
			if (mp.count(S[i + j]) != 0) break;
			mp.insert(S[i + j]);
		}
		if (ansn <= mp.size()) {
			ansn = mp.size();
			ansp = P[i];
		}
	}

	PRI(ansp);

	return 0;
}
0