結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | ttkkggww |
提出日時 | 2022-03-08 11:00:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 8 ms / 5,000 ms |
コード長 | 1,242 bytes |
コンパイル時間 | 5,039 ms |
コンパイル使用メモリ | 267,744 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 10:20:03 |
合計ジャッジ時間 | 5,436 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 8 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 5 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 6 ms
6,940 KB |
testcase_13 | AC | 4 ms
6,944 KB |
testcase_14 | AC | 5 ms
6,940 KB |
testcase_15 | AC | 6 ms
6,944 KB |
testcase_16 | AC | 6 ms
6,940 KB |
testcase_17 | AC | 7 ms
6,944 KB |
testcase_18 | AC | 8 ms
6,944 KB |
testcase_19 | AC | 6 ms
6,940 KB |
testcase_20 | AC | 6 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 6 ms
6,940 KB |
testcase_23 | AC | 6 ms
6,940 KB |
testcase_24 | AC | 6 ms
6,940 KB |
testcase_25 | AC | 4 ms
6,940 KB |
testcase_26 | AC | 7 ms
6,940 KB |
testcase_27 | AC | 6 ms
6,944 KB |
testcase_28 | AC | 4 ms
6,940 KB |
testcase_29 | AC | 8 ms
6,940 KB |
testcase_30 | AC | 6 ms
6,944 KB |
testcase_31 | AC | 6 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; int l,r; vector<long long> primes(long long n){ vector<long long> res; vector<long long> is(n); for(int i = 2;i<n;i++){ if(is[i]==0){ for(int j = i*2;j<n;j+=i){ is[j] = 1; } } } for(int i = max(2,l);i<n;i++){ if(is[i]==0){ res.push_back(i); } } return res; } ll f(ll x){ while(x>9){ ll y = 0; while(x){ y+= x%10; x/=10; } x= y; } return x; } void solve(){ auto v = primes(r+1); vector<ll> fv; for(auto &i:v)fv.push_back(f(i)); ll mxlen = 1,mxnum = 0; ll cur = fv[0]; //for(int i = 0;i<v.size();i++)cout<<v[i]<<' '<<fv[i]<<endl; for(int i = 0;i<v.size();i++){ set<ll> st; for(int j = i;j<v.size();j++){ if(st.count(fv[j])){ if(st.size()>=mxlen){ mxlen = st.size(); cur = v[i]; //cout<<':'<<v[i]<<endl; //for(auto &k:st)cout<<k<<endl; st.clear(); } break; } st.insert(fv[j]); } if(st.size()){ if(st.size()>=mxlen){ mxlen = st.size(); cur = v[i]; st.clear(); } } } //cout<<mxlen<<endl; cout<<cur<<endl; } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> l >> r; solve(); }