結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー karinohitokarinohito
提出日時 2021-08-30 23:59:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 1,528 ms
コンパイル使用メモリ 166,388 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-24 09:38:33
合計ジャッジ時間 14,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,820 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 1,880 ms
6,820 KB
testcase_13 AC 675 ms
6,816 KB
testcase_14 AC 932 ms
6,820 KB
testcase_15 AC 1,234 ms
6,820 KB
testcase_16 AC 270 ms
6,816 KB
testcase_17 AC 51 ms
6,820 KB
testcase_18 AC 144 ms
6,820 KB
testcase_19 AC 1,888 ms
6,820 KB
testcase_20 AC 493 ms
6,820 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 255 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;

int main() {
    ll L,R;
    cin>>L>>R;
    ll an=0;
    for(ll A=L;A<=R-1;A++){
        ll P=2*A+1;
        bool C=true;
        for(ll i=2;i*i<=P;i++){
            if(P%i==0){
                C=false;
                break;
            }
        }
        if(C)an++;
    }
    for(ll A=L;A<=R;A++){
        ll P=A;
        bool C=true;
        for(ll i=2;i*i<=P;i++){
            if(P%i==0){
                C=false;
                break;
            }
        }
        if(C)an++;
    }
    cout<<an<<endl;
}
0