atcoder

atcoderはまりポイント Tip集

投稿日:

mathライブラリにgcdはない

#-*- coding: utf-8 -*-
import math
print(math.factorial(15))
print(math.gcd(24, 36))

 

といコードをテストケースといツールで流すと

Traceback (most recent call last):
File "./Main.py", line 6, in
print(math.gcd(24, 36))
AttributeError: 'module' object has no attribute 'gcd'

 

でもエラーはREというだけでエラーの詳細を教えてくれまん。
不慣れだった私は、テストケースといツールがあり、そこで挙動テストできて原因がわかるまで
20分以上かかりました。
abc148
他にも似たようなnumpyでの制限などがこちらでが紹介されています。

 

以上です

-atcoder

Copyright© CTOを目指す日記 , 2024 All Rights Reserved.