結果

問題 No.1274 楽しい格子点
ユーザー nagissnagiss
提出日時 2020-10-30 23:59:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,644 KB
最終ジャッジ日時 2024-07-22 03:40:40
合計ジャッジ時間 39,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 604 ms
25,684 KB
testcase_02 WA -
testcase_03 AC 645 ms
26,872 KB
testcase_04 WA -
testcase_05 AC 605 ms
24,144 KB
testcase_06 WA -
testcase_07 AC 615 ms
25,044 KB
testcase_08 AC 645 ms
27,464 KB
testcase_09 AC 602 ms
24,272 KB
testcase_10 AC 610 ms
24,140 KB
testcase_11 WA -
testcase_12 AC 592 ms
24,272 KB
testcase_13 AC 609 ms
24,140 KB
testcase_14 WA -
testcase_15 AC 600 ms
24,916 KB
testcase_16 AC 600 ms
24,268 KB
testcase_17 AC 605 ms
24,148 KB
testcase_18 AC 601 ms
24,396 KB
testcase_19 AC 603 ms
24,268 KB
testcase_20 AC 641 ms
24,400 KB
testcase_21 AC 614 ms
24,920 KB
testcase_22 AC 638 ms
27,640 KB
testcase_23 AC 637 ms
27,520 KB
testcase_24 AC 655 ms
27,516 KB
testcase_25 AC 647 ms
27,504 KB
testcase_26 AC 670 ms
27,644 KB
testcase_27 AC 688 ms
27,644 KB
testcase_28 AC 677 ms
27,516 KB
testcase_29 AC 688 ms
27,384 KB
testcase_30 AC 666 ms
27,512 KB
testcase_31 AC 673 ms
27,328 KB
testcase_32 AC 674 ms
27,640 KB
testcase_33 AC 651 ms
27,516 KB
testcase_34 AC 643 ms
27,488 KB
testcase_35 AC 643 ms
27,644 KB
testcase_36 AC 697 ms
27,512 KB
testcase_37 AC 684 ms
27,388 KB
testcase_38 AC 691 ms
27,616 KB
testcase_39 AC 690 ms
27,512 KB
testcase_40 AC 687 ms
27,516 KB
testcase_41 AC 687 ms
27,640 KB
testcase_42 AC 642 ms
26,304 KB
testcase_43 AC 648 ms
26,560 KB
testcase_44 AC 637 ms
26,868 KB
testcase_45 AC 640 ms
26,932 KB
testcase_46 AC 633 ms
26,808 KB
testcase_47 AC 649 ms
27,308 KB
testcase_48 AC 660 ms
26,744 KB
testcase_49 AC 623 ms
24,916 KB
testcase_50 AC 653 ms
26,680 KB
testcase_51 AC 661 ms
26,932 KB
testcase_52 AC 35 ms
10,752 KB
testcase_53 AC 629 ms
26,044 KB
testcase_54 AC 629 ms
26,796 KB
testcase_55 AC 638 ms
24,268 KB
testcase_56 WA -
testcase_57 AC 682 ms
27,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
A, B = gcd(A, B), 0
Closed = {(1, 1)}
ans = 0.25
Dx = [A,A,-A,-A,B,B,-B,-B]
Dy = [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 < 50 and 1 <= uy < 50:
                ans += 1 / ((ux+uy)**(ux+uy))
                #print(ux, uy)
print(ans)
0