結果

問題 No.800 四平方定理
ユーザー tomarint2tomarint2
提出日時 2019-03-17 21:36:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-07 21:00:02
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
70,016 KB
testcase_01 AC 370 ms
75,520 KB
testcase_02 AC 241 ms
68,736 KB
testcase_03 AC 252 ms
68,224 KB
testcase_04 AC 219 ms
75,264 KB
testcase_05 AC 451 ms
75,136 KB
testcase_06 AC 478 ms
71,552 KB
testcase_07 AC 385 ms
75,264 KB
testcase_08 AC 111 ms
70,656 KB
testcase_09 AC 419 ms
70,528 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,D=map(int,input().split())
    ans=0
    sq = set()
    for i in range(1,N+1):
        sq.add(i * i)

    for x in range(1,N+1):
        x2 = x * x
        for y in range(1,N+1):
            y2 = y * y
            for z in range(1,N+1):
                z2 = z * z
                w2 = x2 + y2 + z2 - D
                if w2 < 1:
                    continue
                if w2 in sq:
                    ans += 1
                    #print(x,y,z,w2)
    return ans

print(solve())
0