結果

問題 No.1274 楽しい格子点
ユーザー nagissnagiss
提出日時 2020-10-31 00:07:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 615 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,860 KB
最終ジャッジ日時 2024-07-22 03:52:07
合計ジャッジ時間 25,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 771 ms
25,980 KB
testcase_02 RE -
testcase_03 AC 1,076 ms
51,460 KB
testcase_04 RE -
testcase_05 AC 1,079 ms
51,492 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 1,078 ms
51,536 KB
testcase_09 AC 1,079 ms
51,552 KB
testcase_10 AC 1,055 ms
51,860 KB
testcase_11 RE -
testcase_12 AC 1,072 ms
51,496 KB
testcase_13 AC 1,089 ms
51,708 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 1,072 ms
51,200 KB
testcase_17 AC 1,046 ms
51,620 KB
testcase_18 AC 1,094 ms
51,616 KB
testcase_19 AC 1,089 ms
51,244 KB
testcase_20 AC 1,042 ms
50,572 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,044 ms
50,520 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 1,041 ms
50,852 KB
testcase_33 AC 1,023 ms
50,780 KB
testcase_34 AC 1,027 ms
50,760 KB
testcase_35 AC 1,052 ms
50,784 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 1,055 ms
50,656 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 AC 978 ms
47,584 KB
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 786 ms
26,836 KB
testcase_55 AC 727 ms
24,408 KB
testcase_56 RE -
testcase_57 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
if A+B&1==0:
    assert False
G = gcd(A, B)
Closed = {(1, 1)}
ans = 0.25
Dx = [G,0,-G,0,A,A,-A,-A,B,B,-B,-B]
Dy = [0,G,0,-G,B,-B,B,-B,A,-A,A,-A]
q = deque([(1, 1)])
for i in range(10**5):
    if not q:
        break
    x, y = q.popleft()
    for dx, dy in zip(Dx, Dy):
        ux, uy = x+dx, y+dy
        if (ux, uy) not in Closed:
            Closed.add((ux, uy))
            q.append((ux, uy))
            if 1 <= ux < 20 and 1 <= uy < 20:
                ans += 1 / ((ux+uy)**(ux+uy))
                #print(ux, uy)
print(ans)
0