結果

問題 No.1318 ABCD quadruplets
ユーザー H3PO4H3PO4
提出日時 2022-10-09 09:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,301 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,356 KB
最終ジャッジ日時 2024-06-23 08:41:03
合計ジャッジ時間 12,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 35 ms
52,352 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 36 ms
52,608 KB
testcase_12 AC 37 ms
51,584 KB
testcase_13 AC 110 ms
76,680 KB
testcase_14 AC 494 ms
82,560 KB
testcase_15 AC 90 ms
76,908 KB
testcase_16 AC 681 ms
81,816 KB
testcase_17 AC 129 ms
79,360 KB
testcase_18 AC 443 ms
82,324 KB
testcase_19 AC 198 ms
83,072 KB
testcase_20 AC 107 ms
76,244 KB
testcase_21 AC 157 ms
77,384 KB
testcase_22 AC 96 ms
81,408 KB
testcase_23 AC 1,294 ms
83,968 KB
testcase_24 AC 1,163 ms
83,760 KB
testcase_25 AC 278 ms
83,968 KB
testcase_26 AC 169 ms
82,948 KB
testcase_27 AC 798 ms
84,356 KB
testcase_28 AC 316 ms
83,940 KB
testcase_29 AC 374 ms
83,584 KB
testcase_30 AC 1,297 ms
84,224 KB
testcase_31 AC 290 ms
83,712 KB
testcase_32 AC 1,301 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

res = [0] * (N + 1)
for a in range(M + 1):
    a_ = a ** 2
    for b in range(a, M + 1):
        b_ = b * (a + b)
        if a_ + b_ > N:
            break
        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

print(*res, sep="\n")
0