結果
問題 | No.36 素数が嫌い! |
ユーザー | hitoyozake |
提出日時 | 2018-11-24 13:19:24 |
言語 | C++11 (gcc 13.3.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 842 bytes |
コンパイル時間 | 605 ms |
コンパイル使用メモリ | 67,228 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-12-24 19:11:44 |
合計ジャッジ時間 | 99,249 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | OLE | - |
testcase_02 | AC | 2 ms
8,448 KB |
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 | OLE | - |
testcase_12 | OLE | - |
testcase_13 | OLE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | OLE | - |
testcase_22 | OLE | - |
testcase_23 | OLE | - |
testcase_24 | OLE | - |
testcase_25 | OLE | - |
testcase_26 | OLE | - |
testcase_27 | OLE | - |
testcase_28 | OLE | - |
testcase_29 | OLE | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <cmath> using i64 = long long; int main() { i64 n = 0; std::cin >> n; bool flag = false; const i64 max = 100000000000000; const i64 goal = i64(std::sqrt(n)); int counter = 0; for( i64 i = 2; i <= goal; ++i){ std::cout << i << std::endl; if(n%i==0) { ++counter; if(counter>=3) { flag = true; break; } std::cout << "i: " << i << std::endl; n /= i; i = 1; std::cout << n << std::endl; } } if(n!=1) ++counter; if(counter>=3) flag=true; if(flag==false) std::cout << "NO" << std::endl; else std::cout << "YES" << std::endl; return 0; }