結果
問題 | No.36 素数が嫌い! |
ユーザー | fushime2 |
提出日時 | 2017-01-09 13:43:59 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 59,920 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-12-18 00:18:02 |
合計ジャッジ時間 | 59,784 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,888 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 1 ms
9,892 KB |
testcase_03 | AC | 2 ms
10,016 KB |
testcase_04 | AC | 2 ms
9,888 KB |
testcase_05 | AC | 7 ms
10,020 KB |
testcase_06 | AC | 8 ms
10,020 KB |
testcase_07 | AC | 7 ms
9,888 KB |
testcase_08 | AC | 2 ms
10,016 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 3,526 ms
6,816 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 633 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
ソースコード
#include <iostream> #include <cstdio> #include <algorithm> #include <vector> #include <string> using namespace std; typedef long long ll; bool is_prime(ll x) { for (ll i = 2; i*i <= x; i++) { if (x % i == 0) return false; } return x != 1; } bool is_ok(ll x) { if (x == 1) return false; for (ll i = 2; i*i <= x; i++) { if (is_prime(i)) continue; if (x % i == 0) return true; } return false; } int main(void) { ll x; cin >> x; cout << (is_ok(x) ? "YES" : "NO") << endl; return 0; }