結果

問題 No.800 四平方定理
ユーザー IJKTanabeIJKTanabe
提出日時 2019-09-02 22:04:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 129,976 KB
最終ジャッジ日時 2024-12-17 18:35:56
合計ジャッジ時間 69,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 378 ms
69,384 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 759 ms
126,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,611 ms
71,288 KB
testcase_07 WA -
testcase_08 AC 1,725 ms
70,504 KB
testcase_09 AC 1,241 ms
129,976 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 36 ms
58,948 KB
testcase_21 AC 36 ms
115,516 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 37 ms
59,124 KB
testcase_27 AC 37 ms
114,628 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = [int(i) for i in input().rstrip().split()]
sqr = [i**2 for i in range(n + 1)]
target_num_lis = [i + d for i in sqr]
max_num = target_num_lis[-1]
count = 0

for x in range(1, n + 1):
    sqr_x = sqr[x]
    if sqr_x > max_num: break
    for y in range(x, n + 1):
        sqr_xy = sqr_x + sqr[y]
        if sqr_xy > max_num: break
        for z in range(y, n + 1):
            sqr_xyz = sqr_xy + sqr[z]
            if  sqr_xyz in target_num_lis:
                w = target_num_lis.index(sqr_xyz)
                if x != y != z:
                    count += 6
                elif x == y == z:
                    count += 1
                else:
                    count +=3
                
                # print('x:{0} y:{1} z:{2} in w{3}'.format(x,y,z,w))
                # print('count = ' + str(count))
                # input()
print(count)
                
0