結果

問題 No.1272 珍しい級数
ユーザー ryusukeryusuke
提出日時 2022-01-26 21:14:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 54,612 KB
最終ジャッジ日時 2024-06-06 04:32:42
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,864 KB
testcase_01 AC 32 ms
52,084 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 31 ms
52,404 KB
testcase_05 AC 32 ms
52,776 KB
testcase_06 WA -
testcase_07 AC 32 ms
53,136 KB
testcase_08 AC 30 ms
52,868 KB
testcase_09 AC 33 ms
53,384 KB
testcase_10 AC 32 ms
52,144 KB
testcase_11 WA -
testcase_12 AC 31 ms
53,804 KB
testcase_13 AC 33 ms
52,784 KB
testcase_14 WA -
testcase_15 AC 31 ms
52,632 KB
testcase_16 AC 32 ms
52,540 KB
testcase_17 AC 32 ms
52,312 KB
testcase_18 AC 32 ms
53,548 KB
testcase_19 AC 31 ms
54,072 KB
testcase_20 AC 32 ms
53,548 KB
testcase_21 AC 32 ms
52,936 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 33 ms
52,628 KB
testcase_25 AC 31 ms
53,812 KB
testcase_26 AC 33 ms
52,716 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 32 ms
54,316 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 32 ms
53,480 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 33 ms
52,308 KB
testcase_36 AC 31 ms
53,828 KB
testcase_37 WA -
testcase_38 AC 31 ms
52,704 KB
testcase_39 AC 33 ms
53,388 KB
testcase_40 AC 31 ms
53,912 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 34 ms
53,064 KB
testcase_44 AC 33 ms
52,324 KB
testcase_45 AC 32 ms
52,748 KB
testcase_46 AC 32 ms
52,448 KB
testcase_47 AC 31 ms
53,376 KB
testcase_48 AC 32 ms
53,308 KB
testcase_49 AC 32 ms
52,864 KB
testcase_50 AC 32 ms
52,900 KB
testcase_51 AC 31 ms
52,884 KB
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sin

k = int(input())
print(sum(sin(k * n) / n ** n for n in range(1, 7)))
0