結果

問題 No.6 使いものにならないハッシュ
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-06 23:51:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 5,000 ms
コード長 1,001 bytes
コンパイル時間 2,704 ms
コンパイル使用メモリ 210,880 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 23:51:21
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int L,R; cin >> L >> R;
    
    int Need = R;
    vector<bool> prime(Need+1,true);
    prime.at(0) = false; prime.at(1) = false;
    for(int i=2; i*i<=Need; i++){
        if(!prime.at(i)) continue;
        for(int k=i*i; k<=Need; k+=i) prime.at(k) = false;
    }
    vector<int> P;
    for(int i=L; i<=R; i++) if(prime.at(i)) P.push_back(i);

    int anslen = 0,ansp = -1;
    vector<bool> already(10);
    queue<pair<int,int>> Q;
    for(auto p : P){
        int num = p;
        while(p >= 10){
            int next = 0;
            while(p) next += p%10,p /= 10;
            p = next;
        }
        while(already.at(p)){
            auto[ign,p2] = Q.front(); Q.pop();
            already.at(p2) = false;
        }
        already.at(p) = true; Q.push({num,p});
        if(Q.size() >= anslen) anslen = Q.size(),ansp = Q.front().first; 
    }
    cout << ansp << endl;
}
0