結果

問題 No.732 3PrimeCounting
ユーザー WarToksWarToks
提出日時 2018-09-17 16:39:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,013 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 172,616 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-18 07:45:57
合計ジャッジ時間 41,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 16 ms
5,376 KB
testcase_26 AC 9 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 4 ms
5,376 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 12 ms
5,376 KB
testcase_34 AC 11 ms
5,376 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 AC 8 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 8 ms
5,376 KB
testcase_40 AC 6 ms
5,376 KB
testcase_41 AC 7 ms
5,376 KB
testcase_42 AC 7 ms
5,376 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 5 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 3 ms
5,376 KB
testcase_48 AC 18 ms
5,376 KB
testcase_49 AC 17 ms
5,376 KB
testcase_50 AC 6 ms
5,376 KB
testcase_51 AC 6 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 61 ms
5,376 KB
testcase_54 AC 1,376 ms
5,376 KB
testcase_55 AC 1,342 ms
5,376 KB
testcase_56 AC 1,357 ms
5,376 KB
testcase_57 AC 235 ms
5,376 KB
testcase_58 AC 227 ms
5,376 KB
testcase_59 AC 71 ms
5,376 KB
testcase_60 AC 352 ms
5,376 KB
testcase_61 AC 358 ms
5,376 KB
testcase_62 AC 1,811 ms
5,376 KB
testcase_63 AC 705 ms
5,376 KB
testcase_64 AC 471 ms
5,376 KB
testcase_65 AC 466 ms
5,376 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2 ms
5,376 KB
testcase_68 AC 1,563 ms
5,376 KB
testcase_69 AC 1,582 ms
5,376 KB
testcase_70 AC 1,372 ms
5,376 KB
testcase_71 AC 1,364 ms
5,376 KB
testcase_72 AC 654 ms
5,376 KB
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 14 ms
5,376 KB
testcase_76 AC 1,506 ms
5,376 KB
testcase_77 AC 243 ms
5,376 KB
testcase_78 AC 2,305 ms
5,376 KB
testcase_79 AC 1,604 ms
5,376 KB
testcase_80 AC 2,017 ms
5,376 KB
testcase_81 AC 1,378 ms
5,376 KB
testcase_82 AC 2 ms
5,376 KB
testcase_83 AC 228 ms
5,376 KB
testcase_84 AC 262 ms
5,376 KB
testcase_85 AC 1,137 ms
5,376 KB
testcase_86 AC 2,086 ms
5,376 KB
testcase_87 TLE -
testcase_88 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int n;
  scanf("%d",&n);
  vector<bool> isPrime(3 * n + 1,true);
  for(int i = 2;i <= 3 * n;i++){
    if(isPrime.at(i)){
      for(int j = 2 * i;j <= 3 * n;j += i){
        isPrime.at(j) = false;
      }
    }
  }
  vector <int> Primes;
  for(int i = 3;i <= n;i++){
    if(isPrime.at(i)){
      Primes.push_back(i);
    }
  }
  int size = Primes.size();
  vector <int> GET(2 * Primes.back() + 1,0);
  long long int ans = 0;
  long long int minus = 0;
  for(int i = 0;i < size - 1;i++){
    int U = Primes.at(i);
    for(int j = i + 1;j < size;j++){
      int V = Primes.at(j);
      GET.at(U + V)++;
      if(isPrime.at(U + 2 * V)) minus++;
      if(isPrime.at(2 * U + V)) minus++;
    }
  }

  for(int i = 0;i < size;i++){
    int U = Primes.at(i);
    for(int j = 4; j <= 2 * Primes.back();j +=2){
      if(isPrime.at(U + j) && GET.at(j) > 0){
        ans += GET.at(j);
      }
    }
  }
  ans = (ans - minus) / 3;
  cout << ans << endl;
  return 0;
}
0