結果

問題 No.1272 珍しい級数
ユーザー ryusukeryusuke
提出日時 2022-01-26 21:14:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-12-23 15:58:26
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 WA -
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 34 ms
52,352 KB
testcase_14 WA -
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 35 ms
52,480 KB
testcase_17 AC 35 ms
52,608 KB
testcase_18 AC 35 ms
51,968 KB
testcase_19 AC 33 ms
52,224 KB
testcase_20 AC 37 ms
52,480 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 34 ms
52,352 KB
testcase_25 AC 33 ms
52,096 KB
testcase_26 AC 35 ms
52,352 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 36 ms
52,480 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 35 ms
52,352 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 34 ms
52,096 KB
testcase_36 AC 34 ms
52,224 KB
testcase_37 WA -
testcase_38 AC 36 ms
51,840 KB
testcase_39 AC 35 ms
52,224 KB
testcase_40 AC 34 ms
51,968 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 36 ms
52,352 KB
testcase_44 AC 34 ms
52,224 KB
testcase_45 AC 34 ms
52,096 KB
testcase_46 AC 37 ms
52,096 KB
testcase_47 AC 36 ms
52,096 KB
testcase_48 AC 35 ms
52,224 KB
testcase_49 AC 34 ms
52,224 KB
testcase_50 AC 34 ms
52,224 KB
testcase_51 AC 34 ms
52,352 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