結果

問題 No.1274 楽しい格子点
ユーザー 👑 KazunKazun
提出日時 2020-10-30 23:06:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 557 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 72,368 KB
最終ジャッジ日時 2024-07-22 02:45:53
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,444 KB
testcase_01 RE -
testcase_02 AC 38 ms
53,000 KB
testcase_03 RE -
testcase_04 AC 38 ms
52,392 KB
testcase_05 RE -
testcase_06 AC 37 ms
53,232 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 38 ms
53,632 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 39 ms
52,760 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 39 ms
52,136 KB
testcase_23 RE -
testcase_24 AC 39 ms
53,496 KB
testcase_25 AC 40 ms
52,436 KB
testcase_26 AC 40 ms
52,736 KB
testcase_27 AC 39 ms
53,052 KB
testcase_28 RE -
testcase_29 AC 39 ms
54,208 KB
testcase_30 RE -
testcase_31 AC 39 ms
53,384 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 39 ms
53,852 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 39 ms
53,220 KB
testcase_43 AC 38 ms
52,600 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 39 ms
52,876 KB
testcase_48 AC 38 ms
53,748 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 39 ms
53,544 KB
testcase_52 AC 37 ms
53,892 KB
testcase_53 WA -
testcase_54 AC 37 ms
54,196 KB
testcase_55 WA -
testcase_56 AC 39 ms
53,844 KB
testcase_57 AC 93 ms
72,368 KB
権限があれば一括ダウンロードができます

ソースコード

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

    if C<=20:
        T=10
    else:
        T=2

    for k in range(T):
        h=(k*C+2)
        X+=1/(h**h)
    print(X)
else:
    g=gcd(A,B)
    X=0

    if g<=20:
        T=10
    else:
        T=2

    if (A//g)%2==(B//g)%2==1:
        for k in range(T):
            h=2*k*g+2
            X+=(2*k+1)/(h**h)
    else:
        X=1/0
        for k in range(T):
            h=k*g+2
            X+=(k+1)/(h**h)
    print(X)
0