結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,608 KB
testcase_02 WA -
testcase_03 AC 37 ms
53,000 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,720 KB
testcase_06 WA -
testcase_07 AC 34 ms
52,884 KB
testcase_08 AC 36 ms
54,216 KB
testcase_09 AC 33 ms
52,460 KB
testcase_10 AC 33 ms
53,952 KB
testcase_11 WA -
testcase_12 AC 33 ms
52,748 KB
testcase_13 AC 34 ms
52,784 KB
testcase_14 WA -
testcase_15 AC 34 ms
54,152 KB
testcase_16 AC 33 ms
53,288 KB
testcase_17 AC 34 ms
52,872 KB
testcase_18 AC 33 ms
53,372 KB
testcase_19 AC 32 ms
53,672 KB
testcase_20 AC 33 ms
52,920 KB
testcase_21 AC 33 ms
52,868 KB
testcase_22 AC 88 ms
71,408 KB
testcase_23 AC 234 ms
73,252 KB
testcase_24 AC 127 ms
72,408 KB
testcase_25 AC 80 ms
71,656 KB
testcase_26 AC 40 ms
57,260 KB
testcase_27 AC 40 ms
55,912 KB
testcase_28 AC 57 ms
71,304 KB
testcase_29 AC 36 ms
55,476 KB
testcase_30 AC 77 ms
71,456 KB
testcase_31 AC 34 ms
53,652 KB
testcase_32 AC 36 ms
55,328 KB
testcase_33 AC 54 ms
71,120 KB
testcase_34 AC 35 ms
54,636 KB
testcase_35 AC 43 ms
60,728 KB
testcase_36 AC 106 ms
72,240 KB
testcase_37 AC 38 ms
55,000 KB
testcase_38 AC 35 ms
53,964 KB
testcase_39 AC 42 ms
59,896 KB
testcase_40 AC 49 ms
68,032 KB
testcase_41 AC 42 ms
58,684 KB
testcase_42 AC 34 ms
53,996 KB
testcase_43 AC 35 ms
52,716 KB
testcase_44 AC 36 ms
53,052 KB
testcase_45 AC 34 ms
52,624 KB
testcase_46 AC 34 ms
52,192 KB
testcase_47 AC 34 ms
52,592 KB
testcase_48 AC 34 ms
53,332 KB
testcase_49 AC 34 ms
52,748 KB
testcase_50 AC 34 ms
52,868 KB
testcase_51 AC 34 ms
53,736 KB
testcase_52 AC 33 ms
53,208 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(20):
        h=(k*C+1)
        X+=1/(h**h)
    print(X)
else:
    g=gcd(A,B)
    X=0
    for k in range(20):
        h=(k*g+2)
        X+=(k+1)/(h**h)
    print(X)
0