0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Atcoder Beginner Contest 163 躓いたところまとめ

Posted at

#Atcoderについて
AtCoder(アットコーダー)とは、「競技プログラミング」と呼ばれるコンピュータプログラムのコンテストを行うサービス、および高橋直大が代表を務めるその運営会社を指す。(Wikipediaより)
今回プログラミングの練習でいい機会と思い登録してみました。163回目のコンテストで躓いたところについてまとめていきます。

#環境
Windows10
python 3.8.2

#問題A

##円周率について

いつも忘れてしまうのが円周率。表記方法がいくつかあります。

###mathモジュールを使用する方法

math
import math

print(math.pi)

###numpyを使用する方法

nupy
import numpy as np

print(np.pi)

###mpmathを使用する方法

mpmath
from mpmath import *

mp.dps = 10
print(pi)
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?