結果

問題 No.1274 楽しい格子点
ユーザー realDivineJKrealDivineJK
提出日時 2020-10-30 23:38:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-22 03:17:06
合計ジャッジ時間 10,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
75,496 KB
testcase_01 AC 117 ms
75,648 KB
testcase_02 WA -
testcase_03 AC 265 ms
76,308 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 257 ms
76,164 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 112 ms
76,032 KB
testcase_23 AC 118 ms
76,032 KB
testcase_24 AC 105 ms
75,904 KB
testcase_25 AC 107 ms
75,608 KB
testcase_26 AC 106 ms
75,776 KB
testcase_27 AC 105 ms
75,900 KB
testcase_28 AC 105 ms
75,648 KB
testcase_29 AC 102 ms
76,160 KB
testcase_30 AC 107 ms
76,108 KB
testcase_31 AC 108 ms
75,592 KB
testcase_32 AC 103 ms
75,904 KB
testcase_33 AC 103 ms
75,744 KB
testcase_34 AC 103 ms
75,648 KB
testcase_35 AC 106 ms
75,648 KB
testcase_36 AC 105 ms
75,904 KB
testcase_37 AC 105 ms
75,896 KB
testcase_38 AC 107 ms
75,800 KB
testcase_39 AC 105 ms
75,796 KB
testcase_40 AC 105 ms
75,740 KB
testcase_41 AC 103 ms
76,240 KB
testcase_42 AC 108 ms
76,060 KB
testcase_43 AC 108 ms
76,064 KB
testcase_44 AC 108 ms
75,904 KB
testcase_45 AC 107 ms
75,904 KB
testcase_46 AC 106 ms
75,904 KB
testcase_47 AC 105 ms
76,160 KB
testcase_48 AC 105 ms
75,904 KB
testcase_49 WA -
testcase_50 AC 106 ms
75,620 KB
testcase_51 AC 107 ms
75,776 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 110 ms
76,288 KB
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
A = abs(A)
B = abs(B)
if A == 0 or B == 0:
    if A == 0 and B == 0:
        print(0.5)
    else:
        m = max(A, B)
        S = 1/2
        for i in range(102, 2, -1):
            if (i - 1) % m == 0:
                S += ((i - 1) // m + 1) / pow(i, i)
        print(S)
else:
    S = 0
    L = [[0 for _ in range(101)] for __ in range(101)]
    F = [0 for _ in range(101)]
    for i in range(-25, 25):
        for j in range(-25, 25):
            for k in range(-25, 25):
                for l in range(-25, 25):
                    if i % 2 == l % 2 and j % 2 == k % 2:
                        p = 1 + i * A + j * B
                        q = 1 + k * A + l * B
                        if 0 < p < 100 and 0 < q < 100 and p + q < 100:
                            L[p][q] = 1
    for i in range(100, 0, -1):
        for j in range(100, 0, -1):
            if i + j <= 100:
                F[i+j] += L[i][j]
    for i in range(100, 1, -1):
        S += F[i] / pow(i, i)
    print(S)
0