結果

問題 No.2973 シュニレルマン積分入門
ユーザー vwxyzvwxyz
提出日時 2024-12-03 21:35:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-12-03 21:35:53
合計ジャッジ時間 2,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 1-solve(N-1)-10*solve(N-2)
    if N>0:
        return -solve(N-1)-10*solve(N-2)
    if N<0:
        return (-solve(N+1)-solve(N+2))/10
N=int(input())
ans=solve(N)
print(ans.numerator,"/",ans.denominator,sep="")
0