結果

問題 No.1272 珍しい級数
ユーザー ryusukeryusuke
提出日時 2022-01-26 21:14:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 72,184 KB
最終ジャッジ日時 2023-08-25 03:49:55
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,232 KB
testcase_01 AC 69 ms
71,748 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 69 ms
72,036 KB
testcase_05 AC 68 ms
72,120 KB
testcase_06 WA -
testcase_07 AC 69 ms
71,592 KB
testcase_08 AC 71 ms
71,760 KB
testcase_09 AC 70 ms
71,980 KB
testcase_10 AC 69 ms
71,852 KB
testcase_11 WA -
testcase_12 AC 71 ms
71,780 KB
testcase_13 AC 70 ms
71,812 KB
testcase_14 WA -
testcase_15 AC 71 ms
71,936 KB
testcase_16 AC 69 ms
72,004 KB
testcase_17 AC 71 ms
72,168 KB
testcase_18 AC 70 ms
71,796 KB
testcase_19 AC 70 ms
71,752 KB
testcase_20 AC 70 ms
71,752 KB
testcase_21 AC 71 ms
71,768 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 69 ms
71,848 KB
testcase_25 AC 70 ms
71,832 KB
testcase_26 AC 70 ms
71,872 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 70 ms
71,848 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 72 ms
71,852 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 69 ms
71,600 KB
testcase_36 AC 70 ms
71,848 KB
testcase_37 WA -
testcase_38 AC 69 ms
71,600 KB
testcase_39 AC 69 ms
71,772 KB
testcase_40 AC 68 ms
71,752 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 70 ms
71,832 KB
testcase_44 AC 70 ms
71,824 KB
testcase_45 AC 68 ms
71,660 KB
testcase_46 AC 68 ms
71,988 KB
testcase_47 AC 71 ms
71,872 KB
testcase_48 AC 69 ms
71,756 KB
testcase_49 AC 69 ms
71,836 KB
testcase_50 AC 70 ms
71,872 KB
testcase_51 AC 67 ms
71,848 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