結果

問題 No.2973 シュニレルマン積分入門
ユーザー vwxyzvwxyz
提出日時 2024-11-29 22:28:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-11-29 22:28:40
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,264 KB
testcase_01 AC 31 ms
11,392 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 31 ms
11,264 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 32 ms
11,264 KB
testcase_09 WA -
testcase_10 AC 32 ms
11,264 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 31 ms
11,264 KB
testcase_15 WA -
testcase_16 AC 30 ms
11,392 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
11,264 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 31 ms
11,264 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 33 ms
11,392 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import fractions
from functools import lru_cache
N=int(input())
@lru_cache(maxsize=None)
def A(N):
    if N==0:
        return fractions.Fraction(1)
    if N==1:
        return fractions.Fraction(1)
    if N>0:
        return A(N-1)-10*A(N-2)
    else:
        return (A(N+1)-A(N+2))/10
ab=A(-N)
b,a=ab.denominator,ab.numerator
if N-1<0:
    b*=10**(-N+1)
else:
    a*=10**(N-1)
print(a,b,sep="/")
0