結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | togatoga |
提出日時 | 2015-08-23 15:56:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,432 bytes |
コンパイル時間 | 1,195 ms |
コンパイル使用メモリ | 165,072 KB |
実行使用メモリ | 78,856 KB |
最終ジャッジ日時 | 2024-09-16 16:28:53 |
合計ジャッジ時間 | 9,448 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int sieve(int)’: main.cpp:19:1: warning: no return statement in function returning non-void [-Wreturn-type] 19 | } | ^
ソースコード
#include <bits/stdc++.h> using namespace std; const int MAX_N = 200010; int K,N; vector<int> prime; bool flag[MAX_N]; int sieve(int N){ memset(flag, true, sizeof(flag)); for (int i = 2; i <= N; i++){ if (flag[i]){ if (K <= i)prime.push_back(i); for (int j = i + i; j <= N; j+= i){ flag[j] = false; } } } } int calc(int num){ while (true){ int res = 0; while (num){ res += num % 10; num /= 10; } if (res <= 9)return res; num = res; } } int main(){ cin >> K >> N; sieve(N); vector<int> array; for (int i = 0; i < prime.size(); i++){ array.push_back(calc(prime[i])); } int head = 0; int tail = 0; set<int> used; int ans = 0; int ansele = -1; // for (const auto &val : prime){ // printf("%02d ", val); // } // cout << endl; // for (const auto &val : array){ // printf("%02d ", val); // } // cout << endl; while (tail < array.size()){ if (used.count(array[tail]) == 0){ used.insert(array[tail++]); if (ans < (tail - head)){ ans = tail - head; ansele = prime[head]; }else if (ans == (tail - head) && ansele < prime[head]){ ans = tail - head; ansele = prime[head]; } }else{ while (true){ if (head == tail)break; if (array[head] == array[tail]){ used.erase(array[head++]); break; }else{ used.erase(array[head++]); } } } } cout << ansele << endl; }