結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | k |
提出日時 | 2014-10-29 10:31:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,543 bytes |
コンパイル時間 | 912 ms |
コンパイル使用メモリ | 75,804 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 17:39:45 |
合計ジャッジ時間 | 1,747 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
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
6,940 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 | - |
ソースコード
#include <vector> #include <queue> #include <deque> #include <stack> #include <algorithm> #include <functional> #include <iostream> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> #include <cctype> #include <string> #include <cstring> using namespace std; int mhash(int x) { while (x%10 != x) { int t = 0; for (int i = x; i != 0; i/=10) t += i%10; x = t; } return x; } int main() { int k, n; cin >> k >> n; bool not_prime[n+1]; memset(not_prime, false, sizeof(not_prime)); not_prime[1] = true; for (int i = 2; i <= n; i++) { for (int j = i+i; j <= n; j+=i) { not_prime[j] = true; } } // for (int i = 0; i <= n; i++) cout << i << ": " << not_prime[i] << endl; vector <int> memo; for (int i = k; i <= n; i++) if (!not_prime[i]) memo.push_back(i); // for (int i = 0; i < memo.size(); i++) cout << mhash(memo[i]) << endl; int ans, maxi = 0; bool used[10]; memset(used, false, sizeof(used)); used[mhash(memo[0])] = true; for (int l = 0, r = 1; r < memo.size(); r++) { if (used[mhash(memo[r])] || r == memo.size()-1) { if (maxi <= r-l) { maxi = r-l; ans = memo[l]; } while (mhash(memo[l]) != mhash(memo[r])) { used[mhash(memo[l])] = false; l++; } l++; if (l < memo.size() && maxi <= r-l+1) { maxi = r-l+1; ans = memo[l]; } } } if (!maxi) { cout << memo[memo.size()-1] << endl; }else { cout << ans << endl; } }