結果

問題 No.2973 シュニレルマン積分入門
ユーザー 遭難者遭難者
提出日時 2023-08-29 15:36:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 88,768 KB
最終ジャッジ日時 2024-11-29 20:50:46
合計ジャッジ時間 5,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
88,588 KB
testcase_01 AC 135 ms
88,376 KB
testcase_02 AC 135 ms
88,608 KB
testcase_03 AC 135 ms
88,316 KB
testcase_04 AC 136 ms
88,284 KB
testcase_05 AC 135 ms
88,296 KB
testcase_06 AC 135 ms
88,620 KB
testcase_07 AC 135 ms
88,448 KB
testcase_08 AC 134 ms
88,568 KB
testcase_09 AC 135 ms
88,036 KB
testcase_10 AC 134 ms
88,640 KB
testcase_11 AC 133 ms
88,768 KB
testcase_12 AC 135 ms
88,540 KB
testcase_13 AC 132 ms
88,524 KB
testcase_14 AC 132 ms
88,696 KB
testcase_15 AC 134 ms
87,956 KB
testcase_16 AC 133 ms
88,288 KB
testcase_17 AC 134 ms
88,428 KB
testcase_18 AC 136 ms
88,428 KB
testcase_19 AC 134 ms
88,580 KB
testcase_20 AC 135 ms
88,240 KB
testcase_21 AC 135 ms
88,496 KB
testcase_22 AC 132 ms
88,580 KB
testcase_23 AC 135 ms
88,228 KB
testcase_24 AC 134 ms
88,036 KB
testcase_25 AC 136 ms
88,556 KB
testcase_26 AC 136 ms
88,516 KB
testcase_27 AC 135 ms
88,304 KB
testcase_28 WA -
testcase_29 AC 136 ms
88,520 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**20 // ans_y
    ans_x *= mul
    ans_y *= mul
    print(ans_x, ans_y, sep="/")
else:
    print("1/10")
0