結果
問題 | No.1272 珍しい級数 |
ユーザー | tanon710 |
提出日時 | 2020-10-30 22:06:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 140 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-07-22 00:43:45 |
合計ジャッジ時間 | 3,737 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
import math k=int(input()) if k==0: print(0) else: ans=0 for i in range(1,15): ans+=math.sin(k*i)/(i**i) print(ans)