結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | Mori |
提出日時 | 2019-12-03 17:03:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,105 bytes |
コンパイル時間 | 1,698 ms |
コンパイル使用メモリ | 171,004 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 12:53:44 |
合計ジャッジ時間 | 5,901 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
#include <bits/stdc++.h> #include <set> #include <cstdio> #include <vector> #include <iostream> #include <utility> #define fir first #define sec second #define get(n) scanf("%d",&n); #define gets(s) string s;cin >> (s); #define All(s) (c).begin(), (c).end() #define chmin(x, y) x = std::min(x, y); #define chmax(x, y) x = std::max(x, y); #define rep(i, j) for (int (i)=0;(i)<(j);(i)++) #define repk(i, j, k) for(int (i)=(j);(i)<(k);(i)++) #define downfor(i, j, k) for (int (i)=(j);i>(k);i--) #define dump(x) cout << #x << " = " << (x) << endl; #define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; typedef long long int ll; const ll INF = 10241024; ll max_n = 2*1e5; int K,N; std::vector<int> primenum(max_n); void input(){ std::cin >> N >> K; } void prime(){ primenum.push_back(2); primenum.push_back(3); int rn = sqrt(N); int loc = 2; for(int i = 5;i<=rn;i++){ for(int j=1;j<=loc;j++){ int b = primenum[j]; if(i % b == 0) { break; } if(j == loc) { loc++; primenum.push_back(i); } } } } int hash(int a){ while(a <= 9){ int b = 0;//temporary value hash int aa = a;// downfor(i, 5, 0){//5 to 1 int j = pow(10, i); int k = floor(aa/j); if(k != 0) { b += k; aa -= j * k; } } a = b; } return a; } void solve(){ input(); prime(); std::vector<int> a; int rn = sqrt(N); for(int i=0;i<=rn;i++){ if(primenum[i] >= K) { int s = hash(primenum[i]); a.push_back(s); } } int ans = 0; int c = 1; rep(i, a.size()){ if(a[i] != a[i+1]) { c++; } if(a[i] == a[i+1]) { chmax(ans , c); c = 1; } } std::cout << ans << std::endl; } int main () { solve(); return 0; }