結果
問題 | No.6 使いものにならないハッシュ |
ユーザー | iwashi31 |
提出日時 | 2014-11-21 02:08:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,218 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 76,860 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 21:27:42 |
合計ジャッジ時間 | 2,304 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | WA | - |
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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:74:17: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized] 74 | cout << ret << endl; | ^~~
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <vector> #include <deque> #include <list> #include <string> #include <stack> #include <queue> #include <set> #include <map> #include <algorithm> using namespace std; bool prime[200001]; int app[10]; long int K, N; vector<int> nums; int main() { long int i, j; int len = 0; int maxlen = 0; int prevlen = 0; int ret; cin >> K; cin >> N; for (i = 2; i <= N; i++) prime[i] = true; for (i = 2; i <= N; i++) { if (prime[i]) { for (j = 2*i; j <= N; j += i) { prime[j] = false; } } } for (i = N; i >= K; i--) { if (prime[i]) { int ci = i; while (ci >= 10) { int sum = 0; for (j = 5; j >= 0; j--) { int temp = floor(ci/pow(10,j)); sum += temp; ci -= temp * pow(10,j); } ci = sum; } for (j = 0; j < 10; j++) { app[j]++; if (j == ci) { len = app[j]; app[j] = 0; } } if (len > prevlen + 1) len = prevlen + 1; cout << i << ":" << ci << ":" << len << endl; if (maxlen < len) { maxlen = len; ret = i; } prevlen = len; } } cout << ret << endl; return 0; }