結果

問題 No.3079 アルベド
ユーザー a01sa01toa01sa01to
提出日時 2024-12-07 00:31:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 247,864 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 00:31:59
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
5,248 KB
testcase_01 AC 125 ms
5,248 KB
testcase_02 AC 81 ms
5,248 KB
testcase_03 AC 55 ms
5,248 KB
testcase_04 AC 102 ms
5,248 KB
testcase_05 AC 76 ms
5,248 KB
testcase_06 AC 94 ms
5,248 KB
testcase_07 AC 18 ms
5,248 KB
testcase_08 AC 25 ms
5,248 KB
testcase_09 AC 67 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  constexpr int m = 100'000;
  vector<bool> is_prime(m + 1, true);
  is_prime[0] = is_prime[1] = false;
  for (ll i = 2; i <= m; ++i) {
    if (!is_prime[i]) continue;
    for (ll j = i * i; j <= m; j += i) is_prime[j] = false;
  }
  vector<int> cnt(m + 1, 0);
  for (int i = 1; i <= m; ++i) cnt[i] = cnt[i - 1] + is_prime[i];
  int t;
  cin >> t;
  while (t--) {
    int n;
    cin >> n;
    cout << cnt[n] << endl;
  }
  return 0;
}
0