結果

問題 No.2973 シュニレルマン積分入門
ユーザー 遭難者遭難者
提出日時 2023-08-29 15:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-11-29 20:50:51
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
87,840 KB
testcase_01 AC 120 ms
87,524 KB
testcase_02 AC 121 ms
88,340 KB
testcase_03 AC 117 ms
88,256 KB
testcase_04 AC 118 ms
88,340 KB
testcase_05 AC 120 ms
88,260 KB
testcase_06 AC 121 ms
88,348 KB
testcase_07 AC 116 ms
88,276 KB
testcase_08 AC 120 ms
88,272 KB
testcase_09 AC 119 ms
88,044 KB
testcase_10 AC 117 ms
88,168 KB
testcase_11 AC 120 ms
88,100 KB
testcase_12 AC 116 ms
88,228 KB
testcase_13 AC 125 ms
88,192 KB
testcase_14 AC 117 ms
88,044 KB
testcase_15 AC 119 ms
88,400 KB
testcase_16 AC 115 ms
88,240 KB
testcase_17 AC 116 ms
87,972 KB
testcase_18 AC 121 ms
88,044 KB
testcase_19 AC 120 ms
88,240 KB
testcase_20 AC 119 ms
88,176 KB
testcase_21 AC 114 ms
88,440 KB
testcase_22 AC 123 ms
87,860 KB
testcase_23 AC 116 ms
87,904 KB
testcase_24 AC 116 ms
88,348 KB
testcase_25 AC 119 ms
88,324 KB
testcase_26 AC 122 ms
88,576 KB
testcase_27 AC 120 ms
87,660 KB
testcase_28 AC 117 ms
88,516 KB
testcase_29 AC 120 ms
88,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from fractions import Fraction

input = stdin.readline


n = int(input())
if n > 0:
    print("0/1")
elif n < 0:
    n *= -1
    a = [Fraction(0) for i in range(n + 1)]
    a[0] = Fraction(1, 10)
    a[1] = Fraction(-1, 100)
    for i in range(2, n + 1):
        a[i] = -(a[i - 1] + a[i - 2]) / 10
    ans_x, ans_y = a[n].numerator, a[n].denominator
    mul = 10**40 // ans_y
    ans_x *= mul
    ans_y *= mul
    print(ans_x, ans_y, sep="/")
else:
    print("1/10")
0