結果

問題 No.2973 シュニレルマン積分入門
ユーザー 遭難者遭難者
提出日時 2023-08-29 15:41:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 88,828 KB
最終ジャッジ日時 2024-11-29 20:50:52
合計ジャッジ時間 5,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
88,040 KB
testcase_01 AC 135 ms
88,828 KB
testcase_02 AC 138 ms
88,804 KB
testcase_03 AC 134 ms
88,528 KB
testcase_04 AC 136 ms
88,364 KB
testcase_05 AC 139 ms
88,512 KB
testcase_06 AC 136 ms
88,344 KB
testcase_07 AC 136 ms
88,576 KB
testcase_08 AC 139 ms
88,624 KB
testcase_09 AC 134 ms
87,976 KB
testcase_10 AC 134 ms
88,644 KB
testcase_11 AC 135 ms
88,468 KB
testcase_12 AC 136 ms
88,144 KB
testcase_13 AC 136 ms
88,400 KB
testcase_14 AC 135 ms
88,108 KB
testcase_15 AC 136 ms
88,584 KB
testcase_16 AC 136 ms
88,456 KB
testcase_17 AC 136 ms
88,436 KB
testcase_18 AC 134 ms
88,456 KB
testcase_19 AC 134 ms
88,568 KB
testcase_20 AC 134 ms
88,172 KB
testcase_21 AC 133 ms
88,560 KB
testcase_22 AC 133 ms
88,452 KB
testcase_23 AC 134 ms
88,300 KB
testcase_24 AC 133 ms
88,176 KB
testcase_25 AC 132 ms
88,360 KB
testcase_26 AC 134 ms
88,364 KB
testcase_27 AC 134 ms
88,452 KB
testcase_28 AC 135 ms
88,628 KB
testcase_29 AC 135 ms
88,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
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