結果
問題 | No.1657 Sum is Prime (Easy Version) |
ユーザー | tko919 |
提出日時 | 2021-08-27 21:23:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 912 ms / 2,000 ms |
コード長 | 1,214 bytes |
コンパイル時間 | 2,374 ms |
コンパイル使用メモリ | 204,324 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 00:42:50 |
合計ジャッジ時間 | 7,522 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 775 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,816 KB |
testcase_11 | AC | 8 ms
6,820 KB |
testcase_12 | AC | 702 ms
6,816 KB |
testcase_13 | AC | 301 ms
6,816 KB |
testcase_14 | AC | 340 ms
6,816 KB |
testcase_15 | AC | 449 ms
6,816 KB |
testcase_16 | AC | 133 ms
6,816 KB |
testcase_17 | AC | 23 ms
6,816 KB |
testcase_18 | AC | 58 ms
6,820 KB |
testcase_19 | AC | 796 ms
6,820 KB |
testcase_20 | AC | 194 ms
6,816 KB |
testcase_21 | AC | 912 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 79 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} bool Miller(ll n){ if(n<2 or (n&1)==0)return (n==2); ll d=n-1; while((d&1)==0)d>>=1; vector<ll> seeds; auto MP=[&](ll x,ll t,ll m)->ll{ ll res=1; while(t){ if(t&1)res=(__int128_t(res)*x)%m; x=(__int128_t(x)*x)%m; t>>=1; } return res; }; if(n<(1<<30))seeds={2, 7, 61}; else seeds={2, 325, 9375, 28178, 450775, 9780504}; for(auto& x:seeds){ if(n<=x)break; ll t=d,y=MP(x,t,n); while(t!=n-1 and y!=1 and y!=n-1){ y=(__int128_t(y)*y)%n; t<<=1; } if(y!=n-1 and (t&1)==0)return 0; } return 1; } int main(){ int L,R; cin>>L>>R; int res=0; rep(a,L,R+1){ if(Miller(a))res++; if(a!=R and Miller(a*2+1))res++; } cout<<res<<'\n'; return 0; }