結果

問題 No.1274 楽しい格子点
ユーザー 👑 KazunKazun
提出日時 2020-10-30 22:37:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 188,464 KB
最終ジャッジ日時 2024-07-22 02:00:35
合計ジャッジ時間 8,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,192 KB
testcase_02 WA -
testcase_03 AC 37 ms
53,132 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,540 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,252 KB
testcase_08 AC 41 ms
58,372 KB
testcase_09 AC 36 ms
52,796 KB
testcase_10 AC 36 ms
52,700 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,704 KB
testcase_13 AC 37 ms
53,312 KB
testcase_14 WA -
testcase_15 AC 37 ms
53,696 KB
testcase_16 AC 36 ms
52,320 KB
testcase_17 AC 35 ms
53,788 KB
testcase_18 AC 35 ms
53,476 KB
testcase_19 AC 36 ms
54,280 KB
testcase_20 AC 36 ms
53,080 KB
testcase_21 AC 37 ms
52,604 KB
testcase_22 AC 202 ms
72,488 KB
testcase_23 AC 719 ms
84,896 KB
testcase_24 AC 350 ms
75,492 KB
testcase_25 AC 182 ms
72,120 KB
testcase_26 AC 51 ms
65,196 KB
testcase_27 AC 48 ms
62,748 KB
testcase_28 AC 95 ms
71,484 KB
testcase_29 AC 49 ms
62,676 KB
testcase_30 AC 175 ms
72,024 KB
testcase_31 AC 38 ms
52,500 KB
testcase_32 AC 44 ms
59,748 KB
testcase_33 AC 96 ms
71,120 KB
testcase_34 AC 43 ms
57,928 KB
testcase_35 AC 65 ms
70,932 KB
testcase_36 AC 279 ms
73,628 KB
testcase_37 AC 46 ms
60,444 KB
testcase_38 AC 41 ms
56,596 KB
testcase_39 AC 67 ms
71,096 KB
testcase_40 AC 87 ms
71,316 KB
testcase_41 AC 63 ms
71,128 KB
testcase_42 AC 37 ms
52,832 KB
testcase_43 AC 36 ms
52,740 KB
testcase_44 AC 36 ms
54,068 KB
testcase_45 AC 37 ms
52,328 KB
testcase_46 AC 38 ms
52,748 KB
testcase_47 AC 37 ms
53,332 KB
testcase_48 AC 39 ms
53,020 KB
testcase_49 AC 38 ms
52,876 KB
testcase_50 AC 38 ms
52,472 KB
testcase_51 AC 38 ms
53,176 KB
testcase_52 AC 38 ms
52,524 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
A,B=map(int,input().split())

if A==B==0:
    print(0.25)
elif A==0 or B==0:
    C=max(abs(A),abs(B))
    X=0
    for k in range(30):
        h=(k*C+1)
        X+=1/(h**h)
    print(X)
else:
    g=gcd(A,B)
    X=0
    for k in range(30):
        h=(k*g+2)
        X+=(k+1)/(h**h)
    print(X)
0