結果
問題 | No.713 素数の和 |
ユーザー | Takahiro |
提出日時 | 2018-07-18 00:50:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 511 bytes |
コンパイル時間 | 429 ms |
コンパイル使用メモリ | 55,888 KB |
実行使用メモリ | 16,824 KB |
最終ジャッジ日時 | 2024-05-05 17:54:24 |
合計ジャッジ時間 | 6,822 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:30:13: warning: ‘ans’ may be used uninitialized [-Wmaybe-uninitialized] 30 | cout << ans << endl; | ^~~
ソースコード
#include <iostream> using namespace std; int getPrime(int maxInt) { if(maxInt == 1) return -1; int tmp = maxInt; bool flag = 0; while(!flag){ if(tmp < 2) return -1; for(int i=2; i<maxInt; --i){ if(tmp%maxInt) break; else flag = true; } --tmp; } return tmp; } int main() { int N; cin >> N; int ans; while((N = getPrime(N)) != -1){ ans +=N; N-=1; } cout << ans << endl; return 0; }