結果

問題 No.36 素数が嫌い!
ユーザー DialBirdDialBird
提出日時 2016-11-28 19:58:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 59,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 00:52:40
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
5,248 KB
testcase_01 AC 63 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 37 ms
5,376 KB
testcase_12 AC 110 ms
5,376 KB
testcase_13 AC 111 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 46 ms
5,376 KB
testcase_20 AC 111 ms
5,376 KB
testcase_21 AC 86 ms
5,376 KB
testcase_22 AC 88 ms
5,376 KB
testcase_23 AC 54 ms
5,376 KB
testcase_24 AC 21 ms
5,376 KB
testcase_25 AC 58 ms
5,376 KB
testcase_26 AC 68 ms
5,376 KB
testcase_27 AC 94 ms
5,376 KB
testcase_28 AC 67 ms
5,376 KB
testcase_29 AC 109 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>

using namespace std;

#define REP(i,first,last) for(int i=first;i<last;i++)

bool check(long n){
  long origin_n = n;
  int i = 2;
  int count = 0;
  while (n != 1 && i <= sqrt(origin_n)) {
    if (n % i == 0) {
      count++;
      if (count == 3) return true;
      n /= i;
    } else {
      i++;
    }
  }
  if (n != 1 && count == 2) {
    return true;
  } else {
    return false;
  }
}

int main(){
  long n;
  cin >> n;
  if (check(n)) {
    cout << "YES" << endl;
  } else {
    cout << "NO" << endl;
  }
}
0