結果

問題 No.843 Triple Primes
コンテスト
ユーザー Rubikun
提出日時 2019-06-28 21:39:25
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 385µs
コード長 699 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 827 ms
コンパイル使用メモリ 181,004 KB
実行使用メモリ 9,776 KB
最終ジャッジ日時 2026-08-31 02:44:09
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007,MAX=100003;

int main(){
   
    int N;cin>>N;
    if(N==1) cout<<0<<endl;
    else if(N==2) cout<<1<<endl;
    else{
        int ans=1;
        for(int r=3;r*r-2<=N;r+=2){
            int q=r*r-2;
            bool flag=true;
            for(int i=3;i*i<=r;i++){
                if(r%i==0) flag=false;
            }
            for(int i=3;i*i<=q;i+=2){
                if(q%i==0) flag=false;
            }
            if(flag){
                ans+=2;
                //cout<<2<<" "<<q<<" "<<r<<endl;
            }
        }
        
        cout<<ans<<endl;
    }
}
0