Skip to content

Commit

Permalink
Create CountingPrimes.test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
noya2ruler committed Oct 8, 2024
1 parent 9e7541e commit 4ac5cd4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/math/CountingPrimes.test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#define PROBLEM "https://judge.yosupo.jp/problem/counting_primes"

#include"../../template/template.hpp"
#include"../../math/prime_count.hpp"

int main(){
ll n; in(n);
out(prime_count(n));
}

0 comments on commit 4ac5cd4

Please sign in to comment.