結果

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

テストケース

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

ソースコード

diff #

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