結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 780 ms
25,980 KB
testcase_02 WA -
testcase_03 AC 1,077 ms
51,580 KB
testcase_04 WA -
testcase_05 AC 1,088 ms
51,556 KB
testcase_06 WA -
testcase_07 AC 1,096 ms
51,756 KB
testcase_08 AC 1,073 ms
51,768 KB
testcase_09 AC 1,072 ms
51,656 KB
testcase_10 AC 1,088 ms
51,664 KB
testcase_11 WA -
testcase_12 AC 1,067 ms
51,576 KB
testcase_13 AC 1,051 ms
51,716 KB
testcase_14 WA -
testcase_15 AC 1,077 ms
51,740 KB
testcase_16 AC 1,076 ms
51,204 KB
testcase_17 AC 1,061 ms
51,516 KB
testcase_18 AC 1,084 ms
51,860 KB
testcase_19 AC 1,057 ms
51,400 KB
testcase_20 AC 1,034 ms
50,748 KB
testcase_21 AC 1,047 ms
51,664 KB
testcase_22 AC 1,066 ms
50,732 KB
testcase_23 AC 1,077 ms
50,876 KB
testcase_24 AC 1,048 ms
50,728 KB
testcase_25 AC 1,051 ms
50,836 KB
testcase_26 AC 1,059 ms
50,712 KB
testcase_27 AC 1,042 ms
50,808 KB
testcase_28 AC 1,037 ms
50,648 KB
testcase_29 AC 1,033 ms
50,664 KB
testcase_30 AC 1,068 ms
50,668 KB
testcase_31 AC 1,065 ms
50,672 KB
testcase_32 AC 1,059 ms
50,748 KB
testcase_33 AC 1,055 ms
50,880 KB
testcase_34 AC 1,031 ms
50,768 KB
testcase_35 AC 1,042 ms
50,656 KB
testcase_36 AC 1,049 ms
50,888 KB
testcase_37 AC 1,050 ms
50,832 KB
testcase_38 AC 1,020 ms
50,644 KB
testcase_39 AC 1,032 ms
50,736 KB
testcase_40 AC 1,040 ms
50,768 KB
testcase_41 AC 1,047 ms
50,608 KB
testcase_42 AC 974 ms
47,656 KB
testcase_43 AC 1,019 ms
48,584 KB
testcase_44 AC 965 ms
47,588 KB
testcase_45 AC 965 ms
47,576 KB
testcase_46 AC 940 ms
47,628 KB
testcase_47 AC 971 ms
47,884 KB
testcase_48 AC 997 ms
48,736 KB
testcase_49 AC 921 ms
47,516 KB
testcase_50 AC 1,039 ms
49,964 KB
testcase_51 AC 1,029 ms
49,516 KB
testcase_52 AC 28 ms
11,008 KB
testcase_53 AC 778 ms
26,056 KB
testcase_54 AC 800 ms
26,704 KB
testcase_55 AC 727 ms
24,284 KB
testcase_56 WA -
testcase_57 AC 820 ms
27,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
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