結果

問題 No.1274 楽しい格子点
ユーザー hotman78hotman78
提出日時 2020-09-24 23:03:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,194 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 84,192 KB
最終ジャッジ日時 2024-07-22 18:36:52
合計ジャッジ時間 27,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
82,784 KB
testcase_01 AC 354 ms
83,352 KB
testcase_02 AC 744 ms
83,780 KB
testcase_03 AC 148 ms
81,920 KB
testcase_04 AC 740 ms
83,784 KB
testcase_05 AC 1,173 ms
84,064 KB
testcase_06 AC 734 ms
83,400 KB
testcase_07 AC 513 ms
83,420 KB
testcase_08 AC 123 ms
80,640 KB
testcase_09 AC 1,170 ms
84,096 KB
testcase_10 AC 1,166 ms
84,016 KB
testcase_11 AC 737 ms
83,616 KB
testcase_12 AC 1,172 ms
84,064 KB
testcase_13 AC 1,172 ms
83,992 KB
testcase_14 AC 739 ms
83,672 KB
testcase_15 AC 511 ms
83,088 KB
testcase_16 AC 1,175 ms
84,096 KB
testcase_17 AC 1,170 ms
84,096 KB
testcase_18 AC 1,194 ms
83,840 KB
testcase_19 AC 1,165 ms
83,808 KB
testcase_20 AC 1,177 ms
83,840 KB
testcase_21 AC 510 ms
83,456 KB
testcase_22 AC 117 ms
80,640 KB
testcase_23 AC 115 ms
80,384 KB
testcase_24 AC 114 ms
80,640 KB
testcase_25 AC 116 ms
80,640 KB
testcase_26 AC 122 ms
80,596 KB
testcase_27 AC 124 ms
80,384 KB
testcase_28 AC 119 ms
80,896 KB
testcase_29 AC 124 ms
80,256 KB
testcase_30 AC 116 ms
80,640 KB
testcase_31 AC 118 ms
80,532 KB
testcase_32 AC 122 ms
80,640 KB
testcase_33 AC 119 ms
80,128 KB
testcase_34 AC 120 ms
80,512 KB
testcase_35 AC 123 ms
80,756 KB
testcase_36 AC 117 ms
80,640 KB
testcase_37 AC 112 ms
80,128 KB
testcase_38 AC 119 ms
80,640 KB
testcase_39 AC 115 ms
80,704 KB
testcase_40 AC 113 ms
80,512 KB
testcase_41 AC 114 ms
80,640 KB
testcase_42 AC 150 ms
82,040 KB
testcase_43 AC 148 ms
82,160 KB
testcase_44 AC 145 ms
81,920 KB
testcase_45 AC 159 ms
82,048 KB
testcase_46 AC 157 ms
82,304 KB
testcase_47 AC 128 ms
80,668 KB
testcase_48 AC 132 ms
82,048 KB
testcase_49 AC 496 ms
83,328 KB
testcase_50 AC 157 ms
82,172 KB
testcase_51 AC 149 ms
83,072 KB
testcase_52 AC 112 ms
79,872 KB
testcase_53 AC 265 ms
83,256 KB
testcase_54 AC 160 ms
82,304 KB
testcase_55 AC 1,172 ms
84,192 KB
testcase_56 AC 732 ms
83,840 KB
testcase_57 AC 120 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
import decimal
import sys
import math
a,b=map(int,input().split())
a=abs(a)
b=abs(b)
decimal.getcontext().prec = 400
if a==0 and b==0:
    print("0.25")
    sys.exit()
k=math.gcd(a,b)
ans=Decimal(0)
for i in range(1,100):
    for j in range(1,100):
        if i%k==1 and j%k==1:
            if (i//k+j//k)%2==0 or (a//k+b//k)%2==1:
                ans+=Decimal(1)/Decimal((i+j)**(i+j))
        if k==1:
            if (i//k+j//k)%2==0 or (a//k+b//k)%2==1:
                ans+=Decimal(1)/Decimal((i+j)**(i+j))
print(ans)
0