結果
問題 | No.1272 珍しい級数 |
ユーザー | c-yan |
提出日時 | 2020-10-30 21:49:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-22 00:11:05 |
合計ジャッジ時間 | 3,115 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
from math import sin k = int(input()) t = [0] * 128 for n in range(1, 128 + 1): t[n - 1] = sin(k * n) / (n ** n) x = 1 while x < 128: for i in range(0, 128, x * 2): t[i] += t[i + x] x *= 2 print(t[0])