結果

問題 No.2973 シュニレルマン積分入門
ユーザー 遭難者遭難者
提出日時 2023-08-29 15:36:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 489 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 88,904 KB
最終ジャッジ日時 2024-11-29 20:50:49
合計ジャッジ時間 6,755 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
88,272 KB
testcase_01 AC 125 ms
88,580 KB
testcase_02 WA -
testcase_03 AC 125 ms
88,524 KB
testcase_04 WA -
testcase_05 AC 117 ms
88,300 KB
testcase_06 WA -
testcase_07 AC 122 ms
88,488 KB
testcase_08 WA -
testcase_09 AC 120 ms
88,208 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 120 ms
88,168 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 120 ms
87,908 KB
testcase_16 WA -
testcase_17 AC 120 ms
88,172 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 117 ms
88,532 KB
testcase_21 WA -
testcase_22 AC 119 ms
87,904 KB
testcase_23 WA -
testcase_24 AC 120 ms
88,308 KB
testcase_25 WA -
testcase_26 AC 118 ms
88,280 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 122 ms
88,296 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**100 // ans_y
    ans_x *= mul
    ans_y *= mul
    print(ans_x, ans_y, sep="/")
else:
    print("1/10")
0