Submission #1925686
Source Code Expand
Copy
#include <bits/stdc++.h> using namespace std; inline bool IsPrime( int number ) { if ( ( (!(number & 1)) && number != 2 ) || (number < 2) || (number % 3 == 0 && number != 3) ) return (false); for( int k = 1; 36*k*k-12*k < number;++k) if ( (number % (6*k+1) == 0) || (number % (6*k-1) == 0) ) return (false); return true; } int main() { int n, i, j, a, b, c; cin>>n; for(i=0;i<n;i++){ c=0; cin>>a>>b; for(j=a;j<=b;j++){ if(IsPrime(j) && IsPrime((j+1)/2)) c++; } cout<<c<<endl; } return 0; }
Submission Info
Submission Time | |
---|---|
Task | D - 2017-like Number |
User | lentti |
Language | C++14 (GCC 5.4.1) |
Score | 0 |
Code Size | 622 Byte |
Status | TLE |
Exec Time | 2103 ms |
Memory | 256 KB |
Judge Result
Set Name | Sample | All | ||||||
---|---|---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 0 / 400 | ||||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt, sample_03.txt |
All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, sample_01.txt, sample_02.txt, sample_03.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
01.txt | TLE | 2103 ms | 256 KB |
02.txt | TLE | 2103 ms | 256 KB |
03.txt | TLE | 2103 ms | 256 KB |
04.txt | TLE | 2103 ms | 256 KB |
05.txt | TLE | 2103 ms | 256 KB |
06.txt | TLE | 2103 ms | 256 KB |
07.txt | TLE | 2103 ms | 256 KB |
sample_01.txt | AC | 1 ms | 256 KB |
sample_02.txt | AC | 1 ms | 256 KB |
sample_03.txt | AC | 1 ms | 256 KB |