結果

問題 No.1318 ABCD quadruplets
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-27 18:34:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,508 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 84,488 KB
最終ジャッジ日時 2024-10-01 18:18:36
合計ジャッジ時間 14,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,020 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 36 ms
54,116 KB
testcase_03 AC 39 ms
52,192 KB
testcase_04 AC 37 ms
53,132 KB
testcase_05 AC 37 ms
52,964 KB
testcase_06 AC 37 ms
53,744 KB
testcase_07 AC 36 ms
52,724 KB
testcase_08 AC 36 ms
52,820 KB
testcase_09 AC 36 ms
52,688 KB
testcase_10 AC 37 ms
53,060 KB
testcase_11 AC 37 ms
52,620 KB
testcase_12 AC 36 ms
52,500 KB
testcase_13 AC 108 ms
77,132 KB
testcase_14 AC 526 ms
82,736 KB
testcase_15 AC 87 ms
76,800 KB
testcase_16 AC 753 ms
81,924 KB
testcase_17 AC 99 ms
79,688 KB
testcase_18 AC 475 ms
81,800 KB
testcase_19 AC 225 ms
83,080 KB
testcase_20 AC 104 ms
76,524 KB
testcase_21 AC 156 ms
77,300 KB
testcase_22 AC 94 ms
81,688 KB
testcase_23 AC 1,465 ms
84,396 KB
testcase_24 AC 1,251 ms
84,276 KB
testcase_25 AC 301 ms
84,068 KB
testcase_26 AC 184 ms
82,912 KB
testcase_27 AC 909 ms
84,488 KB
testcase_28 AC 338 ms
84,132 KB
testcase_29 AC 408 ms
84,168 KB
testcase_30 AC 1,508 ms
84,232 KB
testcase_31 AC 320 ms
83,688 KB
testcase_32 AC 1,500 ms
84,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0] * (N + 1)
for a in range(M + 1):
    for b in range(a, M + 1):
        for c in range(b, M + 1):
            for d in range(c, M + 1):
                x = ((a+b+c+d)**2 + a*a + b*b + c*c + d*d) // 2
                if x > N:
                    break
                if a == b == c == d:
                    cnt[x] += 1
                elif a == b == c or b == c == d:
                    cnt[x] += 4
                elif a == b and c == d:
                    cnt[x] += 6
                elif a == b or b == c or c == d:
                    cnt[x] += 12
                else:
                    cnt[x] += 24

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