結果
| 問題 | No.36 素数が嫌い! |
| コンテスト | |
| ユーザー |
fushime2
|
| 提出日時 | 2017-01-09 13:43:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 552 bytes |
| 記録 | |
| コンパイル時間 | 596 ms |
| コンパイル使用メモリ | 59,920 KB |
| 実行使用メモリ | 10,020 KB |
| 最終ジャッジ日時 | 2024-12-18 00:18:02 |
| 合計ジャッジ時間 | 59,784 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 17 TLE * 9 |
ソースコード
#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;
}
fushime2