結果

問題 No.1272 珍しい級数
ユーザー titiatitia
提出日時 2020-10-30 21:39:34
言語 Python3
(3.10.1 + numpy 1.22.3 + scipy 1.8.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 63 ms
使用メモリ 9,816 KB
最終ジャッジ日時 2023-02-21 11:34:33
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 15 ms
7,728 KB
testcase_01 AC 15 ms
7,876 KB
testcase_02 AC 16 ms
8,112 KB
testcase_03 AC 16 ms
7,844 KB
testcase_04 AC 16 ms
9,748 KB
testcase_05 AC 15 ms
8,156 KB
testcase_06 AC 15 ms
9,816 KB
testcase_07 AC 16 ms
7,992 KB
testcase_08 AC 15 ms
8,008 KB
testcase_09 AC 16 ms
8,092 KB
testcase_10 AC 16 ms
8,240 KB
testcase_11 AC 16 ms
7,904 KB
testcase_12 AC 16 ms
9,688 KB
testcase_13 AC 16 ms
9,708 KB
testcase_14 AC 15 ms
8,104 KB
testcase_15 AC 16 ms
8,188 KB
testcase_16 AC 15 ms
9,732 KB
testcase_17 AC 15 ms
9,692 KB
testcase_18 AC 15 ms
8,004 KB
testcase_19 AC 15 ms
7,980 KB
testcase_20 AC 16 ms
9,692 KB
testcase_21 AC 16 ms
9,716 KB
testcase_22 AC 16 ms
7,988 KB
testcase_23 AC 16 ms
8,096 KB
testcase_24 AC 15 ms
8,220 KB
testcase_25 AC 16 ms
8,216 KB
testcase_26 AC 16 ms
8,176 KB
testcase_27 AC 15 ms
9,708 KB
testcase_28 AC 16 ms
8,076 KB
testcase_29 AC 15 ms
9,692 KB
testcase_30 AC 16 ms
9,760 KB
testcase_31 AC 15 ms
9,740 KB
testcase_32 AC 15 ms
8,120 KB
testcase_33 AC 15 ms
8,096 KB
testcase_34 AC 15 ms
9,640 KB
testcase_35 AC 15 ms
9,732 KB
testcase_36 AC 16 ms
8,080 KB
testcase_37 AC 16 ms
7,980 KB
testcase_38 AC 16 ms
8,172 KB
testcase_39 AC 15 ms
8,108 KB
testcase_40 AC 16 ms
8,216 KB
testcase_41 AC 16 ms
7,936 KB
testcase_42 AC 15 ms
9,712 KB
testcase_43 AC 15 ms
9,644 KB
testcase_44 AC 15 ms
7,980 KB
testcase_45 AC 16 ms
7,908 KB
testcase_46 AC 16 ms
8,156 KB
testcase_47 AC 16 ms
9,780 KB
testcase_48 AC 16 ms
8,164 KB
testcase_49 AC 16 ms
9,768 KB
testcase_50 AC 16 ms
9,752 KB
testcase_51 AC 15 ms
9,636 KB
testcase_52 AC 16 ms
9,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sin

k=int(input())
ANS=0
for i in range(10**2):
    ANS=ANS+sin(k*i)/(i**i)

print(ANS)
0