結果

問題 No.1318 ABCD quadruplets
ユーザー SSlimeSSlime
提出日時 2020-07-24 23:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,404 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 80,304 KB
最終ジャッジ日時 2024-06-25 22:56:51
合計ジャッジ時間 12,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 127 ms
76,380 KB
testcase_14 AC 550 ms
79,280 KB
testcase_15 AC 88 ms
76,160 KB
testcase_16 AC 694 ms
78,884 KB
testcase_17 AC 93 ms
77,656 KB
testcase_18 AC 501 ms
79,156 KB
testcase_19 AC 230 ms
79,216 KB
testcase_20 AC 109 ms
76,476 KB
testcase_21 AC 163 ms
77,008 KB
testcase_22 AC 93 ms
78,340 KB
testcase_23 AC 1,374 ms
80,128 KB
testcase_24 AC 1,270 ms
80,204 KB
testcase_25 AC 306 ms
79,828 KB
testcase_26 AC 177 ms
78,968 KB
testcase_27 AC 951 ms
80,304 KB
testcase_28 AC 357 ms
79,644 KB
testcase_29 AC 441 ms
79,784 KB
testcase_30 AC 1,382 ms
80,128 KB
testcase_31 AC 324 ms
79,512 KB
testcase_32 AC 1,404 ms
80,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

ans = [0]*(n+1)
for a in range(m + 1):
    for b in range(a,m + 1):
        if a * a + b * b + (a + b)*(a+b)> 2*n:
            break
        for c in range(b,m + 1):
            if a * a + b * b + c * c + (a + b + c) * (a + b + c) > 2*n:
                break
            for d in range(c,m + 1):
                s = a*a + b*b + c*c + d*d + (a+b+c+d)**2
                if s > 2 * n:
                    break
                if s % 2 == 1: continue
                if a == b == c == d:
                    ans[s // 2] += 1
                elif a == b == c or b == c == d:
                    ans[s // 2] += 4
                elif a == b and c == d:
                    ans[s // 2] += 6
                elif a == b or b == c or c == d:
                    ans[s // 2] += 12
                else:
                    ans[s // 2] += 24
print("\n".join(str(i) for i in ans))
0