結果

問題 No.732 3PrimeCounting
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-04-05 17:19:18
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 793 ms / 3,000 ms
コード長 1,943 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 157,332 KB
実行使用メモリ 8,304 KB
最終ジャッジ日時 2024-06-13 04:52:12
合計ジャッジ時間 12,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 8 ms
7,120 KB
testcase_02 AC 7 ms
7,444 KB
testcase_03 AC 6 ms
6,948 KB
testcase_04 AC 8 ms
7,008 KB
testcase_05 AC 7 ms
6,948 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 7 ms
7,748 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 7 ms
8,032 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 7 ms
7,012 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 7 ms
8,000 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 8 ms
7,860 KB
testcase_23 AC 6 ms
7,324 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 10 ms
6,944 KB
testcase_26 AC 8 ms
6,948 KB
testcase_27 AC 7 ms
7,932 KB
testcase_28 AC 7 ms
8,072 KB
testcase_29 AC 8 ms
7,568 KB
testcase_30 AC 7 ms
6,940 KB
testcase_31 AC 8 ms
6,944 KB
testcase_32 AC 8 ms
7,532 KB
testcase_33 AC 9 ms
7,292 KB
testcase_34 AC 9 ms
6,948 KB
testcase_35 AC 8 ms
8,304 KB
testcase_36 AC 8 ms
6,944 KB
testcase_37 AC 6 ms
6,944 KB
testcase_38 AC 7 ms
7,392 KB
testcase_39 AC 7 ms
6,944 KB
testcase_40 AC 7 ms
7,896 KB
testcase_41 AC 8 ms
7,020 KB
testcase_42 AC 8 ms
6,944 KB
testcase_43 AC 7 ms
7,288 KB
testcase_44 AC 7 ms
6,940 KB
testcase_45 AC 7 ms
6,944 KB
testcase_46 AC 7 ms
7,844 KB
testcase_47 AC 7 ms
7,124 KB
testcase_48 AC 9 ms
7,632 KB
testcase_49 AC 9 ms
6,940 KB
testcase_50 AC 8 ms
7,028 KB
testcase_51 AC 8 ms
7,572 KB
testcase_52 AC 7 ms
7,212 KB
testcase_53 AC 17 ms
6,944 KB
testcase_54 AC 221 ms
6,980 KB
testcase_55 AC 215 ms
7,188 KB
testcase_56 AC 224 ms
7,168 KB
testcase_57 AC 41 ms
6,944 KB
testcase_58 AC 41 ms
6,940 KB
testcase_59 AC 17 ms
7,364 KB
testcase_60 AC 58 ms
7,812 KB
testcase_61 AC 59 ms
7,000 KB
testcase_62 AC 303 ms
7,408 KB
testcase_63 AC 115 ms
6,940 KB
testcase_64 AC 78 ms
6,944 KB
testcase_65 AC 79 ms
8,200 KB
testcase_66 AC 7 ms
6,940 KB
testcase_67 AC 7 ms
7,856 KB
testcase_68 AC 256 ms
7,352 KB
testcase_69 AC 256 ms
7,644 KB
testcase_70 AC 219 ms
6,940 KB
testcase_71 AC 223 ms
7,088 KB
testcase_72 AC 109 ms
6,940 KB
testcase_73 AC 533 ms
7,152 KB
testcase_74 AC 546 ms
7,628 KB
testcase_75 AC 10 ms
6,940 KB
testcase_76 AC 247 ms
8,272 KB
testcase_77 AC 44 ms
7,348 KB
testcase_78 AC 395 ms
6,944 KB
testcase_79 AC 258 ms
7,956 KB
testcase_80 AC 348 ms
7,388 KB
testcase_81 AC 229 ms
7,600 KB
testcase_82 AC 7 ms
7,416 KB
testcase_83 AC 43 ms
7,260 KB
testcase_84 AC 48 ms
6,944 KB
testcase_85 AC 178 ms
6,944 KB
testcase_86 AC 360 ms
6,948 KB
testcase_87 AC 787 ms
6,944 KB
testcase_88 AC 793 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum LIM = 4 * 10^^5;

int N;

void main() {
  auto isnp = new bool[LIM];
  int[] primes;
  foreach (p; 2 .. LIM) {
    if (!isnp[p]) {
      primes ~= p;
      for (int n = 2 * p; n < LIM; n += p) {
        isnp[n] = true;
      }
    }
  }
  stderr.writeln(primes.length);
  stderr.writeln(primes[0 .. 10]);
  stderr.writeln(primes[$ - 10 .. $]);
  
  try {
    for (; ; ) {
      N = readInt();
      
      long ans;
      auto cnt = new long[LIM];
      foreach (ib, b; primes) {
        if (b > N) {
          break;
        }
        foreach (d; primes[ib .. $]) {
          if (d - b > N + N) {
            break;
          }
          ans += cnt[d - b];
        }
        foreach (a; primes[0 .. ib]) {
          ++cnt[a + b];
        }
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0