結果

問題 No.2973 シュニレルマン積分入門
ユーザー ecotteaecottea
提出日時 2024-12-02 21:52:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-12-02 21:53:10
合計ジャッジ時間 12,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
89,472 KB
testcase_01 AC 228 ms
89,600 KB
testcase_02 AC 229 ms
89,600 KB
testcase_03 RE -
testcase_04 AC 229 ms
89,856 KB
testcase_05 RE -
testcase_06 AC 226 ms
89,856 KB
testcase_07 RE -
testcase_08 AC 228 ms
89,472 KB
testcase_09 RE -
testcase_10 AC 233 ms
89,472 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 WA -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
import math
from fractions import Fraction

N = int(input())

M = 1 * 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9

val = 0
for k in range(M):
    num = cmath.exp(2 * k * N * math.pi * 1j / M)
    dnm = cmath.exp(4 * k * math.pi * 1j / M)
    dnm += cmath.exp(2 * k * math.pi * 1j / M)
    dnm += 10
    val += num / dnm
val /= M
# print(val)

x = Fraction(val.real)
y = x.limit_denominator(10**(-N+1))
# print(y)

y_num = y.numerator
y_dnm = y.denominator

tmp = y_dnm

c2 = 0
c5 = 0

while tmp % 2 == 0:
    c2 += 1
    tmp //= 2
while tmp % 5 == 0:
    c5 += 1
    tmp //= 5
# print(c2, c5, tmp)

if c2 > c5:
    y_num *= 5**(c2-c5)
    y_dnm *= 5**(c2-c5)
elif c2 < c5:
    y_num *= 2**(c5-c2)
    y_dnm *= 2**(c5-c2)

print(y_num, y_dnm, sep='/')
0