結果

問題 No.1274 楽しい格子点
ユーザー 👑 KazunKazun
提出日時 2020-10-30 23:16:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 53,888 KB
最終ジャッジ日時 2024-07-22 02:58:58
合計ジャッジ時間 3,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,064 KB
testcase_01 AC 39 ms
53,472 KB
testcase_02 AC 40 ms
52,828 KB
testcase_03 AC 39 ms
53,608 KB
testcase_04 AC 39 ms
52,832 KB
testcase_05 AC 39 ms
52,400 KB
testcase_06 AC 39 ms
52,268 KB
testcase_07 AC 39 ms
52,200 KB
testcase_08 AC 39 ms
53,376 KB
testcase_09 AC 39 ms
52,664 KB
testcase_10 AC 40 ms
53,740 KB
testcase_11 AC 39 ms
52,244 KB
testcase_12 AC 40 ms
53,212 KB
testcase_13 AC 42 ms
52,380 KB
testcase_14 AC 39 ms
53,396 KB
testcase_15 AC 39 ms
52,428 KB
testcase_16 AC 39 ms
53,172 KB
testcase_17 AC 39 ms
53,368 KB
testcase_18 AC 39 ms
53,340 KB
testcase_19 AC 39 ms
53,888 KB
testcase_20 AC 41 ms
52,756 KB
testcase_21 AC 40 ms
52,456 KB
testcase_22 AC 40 ms
52,532 KB
testcase_23 AC 40 ms
53,852 KB
testcase_24 AC 39 ms
53,264 KB
testcase_25 AC 39 ms
53,812 KB
testcase_26 AC 38 ms
52,696 KB
testcase_27 AC 40 ms
52,988 KB
testcase_28 AC 40 ms
53,064 KB
testcase_29 AC 40 ms
52,428 KB
testcase_30 AC 39 ms
52,408 KB
testcase_31 AC 39 ms
52,528 KB
testcase_32 AC 39 ms
52,648 KB
testcase_33 AC 39 ms
52,464 KB
testcase_34 AC 39 ms
52,880 KB
testcase_35 AC 39 ms
53,352 KB
testcase_36 AC 39 ms
52,372 KB
testcase_37 AC 39 ms
53,200 KB
testcase_38 AC 39 ms
53,740 KB
testcase_39 AC 40 ms
52,316 KB
testcase_40 AC 40 ms
52,188 KB
testcase_41 AC 42 ms
53,572 KB
testcase_42 AC 39 ms
53,308 KB
testcase_43 AC 38 ms
53,284 KB
testcase_44 AC 39 ms
52,800 KB
testcase_45 AC 40 ms
53,748 KB
testcase_46 AC 38 ms
52,836 KB
testcase_47 AC 40 ms
53,016 KB
testcase_48 AC 39 ms
53,632 KB
testcase_49 AC 39 ms
52,648 KB
testcase_50 AC 39 ms
53,288 KB
testcase_51 AC 39 ms
53,872 KB
testcase_52 AC 39 ms
52,568 KB
testcase_53 WA -
testcase_54 AC 38 ms
53,496 KB
testcase_55 WA -
testcase_56 AC 39 ms
52,812 KB
testcase_57 AC 38 ms
52,528 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))
    if C>=9:
        print(0.25)
    else:
        print([0.291285997062663540407282590596, 0.253927743175264566674009102034,0.250320059608149804379393070974, 0.250021433570507634574389368789,
            0.250001214265791058668395963380, 0.250000059604644865383370307350,0.250000002581174791767407290614, 0.250000000100000000000025415281,
            0.250000000003504938994813934513, 0.250000000000112156654784615087,0.250000000000003301690955230119, 0.250000000000000089992745297813,
            0.250000000000000002283658260521, 0.250000000000000000054210108624,0.250000000000000000001208838648, 0.250000000000000000000025415281,
            0.250000000000000000000000505454, 0.250000000000000000000000009537,0.250000000000000000000000000171, 0.250000000000000000000000000003][C-1])
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:
        for k in range(T):
            h=k*g+2
            X+=(k+1)/(h**h)
    print(X)
0