結果

問題 No.8079 アルベド
ユーザー HoyHoyCharhangHoyHoyCharhang
提出日時 2021-04-02 01:01:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 167,180 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 08:57:03
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
6,816 KB
testcase_01 AC 158 ms
6,816 KB
testcase_02 AC 96 ms
6,816 KB
testcase_03 AC 68 ms
6,816 KB
testcase_04 AC 119 ms
6,820 KB
testcase_05 AC 91 ms
6,820 KB
testcase_06 AC 116 ms
6,816 KB
testcase_07 AC 22 ms
6,820 KB
testcase_08 AC 33 ms
6,820 KB
testcase_09 AC 89 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  vector<int> prime(100102, 1);
  prime[1] = 0;
  for (int i = 2; i*i <= 100101; ++i) {
    if (!prime[i]) continue;
    for (int j = 2; i*j <= 100101; ++j) {
      prime[i*j] = 0;
    }
  }
  for (int i = 1; i < 100011; ++i) {
    prime[i+1] += prime[i];
  }
  int t;
  cin >> t;
  while(t--) {
    int n;
    cin >> n;
    cout << prime[n] << endl;
  }
  return 0;
}
0