結果

問題 No.1318 ABCD quadruplets
ユーザー H3PO4H3PO4
提出日時 2022-10-09 08:46:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 871 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 84,428 KB
最終ジャッジ日時 2024-06-23 08:21:42
合計ジャッジ時間 10,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,364 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 38 ms
51,944 KB
testcase_03 AC 37 ms
52,956 KB
testcase_04 AC 37 ms
53,104 KB
testcase_05 AC 37 ms
52,428 KB
testcase_06 AC 37 ms
52,584 KB
testcase_07 AC 37 ms
52,604 KB
testcase_08 AC 37 ms
52,452 KB
testcase_09 AC 37 ms
53,208 KB
testcase_10 AC 38 ms
53,236 KB
testcase_11 AC 38 ms
53,000 KB
testcase_12 AC 37 ms
53,036 KB
testcase_13 AC 116 ms
76,452 KB
testcase_14 AC 1,144 ms
77,696 KB
testcase_15 AC 83 ms
76,448 KB
testcase_16 TLE -
testcase_17 AC 100 ms
76,900 KB
testcase_18 AC 1,033 ms
77,412 KB
testcase_19 AC 388 ms
77,520 KB
testcase_20 AC 110 ms
76,436 KB
testcase_21 AC 234 ms
76,604 KB
testcase_22 AC 82 ms
77,692 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, M):
    res = [0] * (N + 1)
    for a in range(M + 1):
        a_ = a ** 2
        for b in range(a, M + 1):
            b_ = b * (a + b)
            for c in range(b, M + 1):
                c_ = c * (a + b + c)
                for d in range(c, M + 1):
                    x = a_ + b_ + c_ + d * (a + b + c + d)
                    if x > N:
                        break
                    if a == b == c == d:
                        res[x] += 1
                    elif a == b == c or b == c == d:
                        res[x] += 4
                    elif a == b and c == d:
                        res[x] += 6
                    elif a == b or b == c or c == d:
                        res[x] += 12
                    else:
                        res[x] += 24
    return res


N, M = map(int, input().split())
for x in solve(N, M):
    print(x)
0