Skip to content

Commit

Permalink
GH_PAT 使ってないやんけ!!
Browse files Browse the repository at this point in the history
  • Loading branch information
tatyam-prime committed Jun 7, 2024
1 parent c24f201 commit f70d5fb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- run: oj-verify all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_PAT: ${{ secrets.GH_PAT }}
GH_PAT: this_token_is_never_used_but_oj_verify_requires_this

- run: git switch main

Expand Down Expand Up @@ -68,6 +68,7 @@ jobs:
cp notebook.pdf $DIR
cp build/*.css $DIR
cp build/*.html $DIR
git clean -dfx
git switch gh-pages
cp $DIR/* .
git add . && git commit -m "build PDF" && git push
Expand Down
14 changes: 7 additions & 7 deletions src/memo/Primes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#### 素数の個数

| $n$ | $10^2$ | $10^3$ | $10^4$ | $10^5$ | $10^6$ | $10^7$ | $10^8$ | $10^9$ |
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
| $\pi(n)$ | $25$ | $168$ | $1229$ | $9592$ | $78498$ | $6.6 \times 10^5$ | $5.8 \times 10^6$ | $5.1 \times 10^7$ |
| $n$ | $10^2$ | $10^3$ | $10^4$ | $10^5$ | $10^6$ | $10^7$ | $10^8$ | $10^9$ | $10^{10}$ |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| $\pi(n)$ | 25 | 168 | 1229 | 9592 | 78498 | 664579 | 5.76e+6 | 5.08e+7 | 4.55e+8 |

#### 高度合成数

Expand All @@ -19,10 +19,10 @@

| $n$ | $2$ | $3$ | $5$ | $7$ | $11$ | $13$ | $17$ | $19$ | $23$ | $29$ |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| $n\\#$ | 2 | 6 | 30 | 210 | 2310 | 30030 | 510510 | 9699690 | $2.2 \times 10^8$ | $6.5 \times 10^9$ |
| $n\\#$ | 2 | 6 | 30 | 210 | 2310 | 30030 | 510510 | 9.70e+6 | 2.23e+8 | 6.47e+9 |

#### 階乗

| $5!$ | $6!$ | $7!$ | $8!$ | $9!$ | $10!$ | $11!$ | $12!$ |
| --- | --- | --- | --- | --- | --- | --- | --- |
| 120 | 720 | 5040 | 40320 | 362880 | 3628800 | $4.0 \times 10^7$ | $4.8 \times 10^8$ |
| $4!$ | $5!$ | $6!$ | $7!$ | $8!$ | $9!$ | $10!$ | $11!$ | $12!$ | $13!$ |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| 24 | 120 | 720 | 5040 | 40320 | 362880 | 3.63e+6 | 3.99e+7 | 4.79e+8 | 6.23e+9 |

0 comments on commit f70d5fb

Please sign in to comment.