結果

問題 No.1318 ABCD quadruplets
ユーザー tatyamtatyam
提出日時 2020-07-25 00:07:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,385 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 78,440 KB
最終ジャッジ日時 2024-06-25 23:35:48
合計ジャッジ時間 13,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 39 ms
51,940 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 113 ms
76,676 KB
testcase_14 AC 489 ms
77,652 KB
testcase_15 AC 93 ms
76,492 KB
testcase_16 AC 739 ms
77,568 KB
testcase_17 AC 102 ms
77,556 KB
testcase_18 AC 421 ms
77,416 KB
testcase_19 AC 214 ms
78,080 KB
testcase_20 AC 112 ms
76,576 KB
testcase_21 AC 156 ms
76,544 KB
testcase_22 AC 100 ms
77,824 KB
testcase_23 AC 1,293 ms
77,900 KB
testcase_24 AC 1,134 ms
78,440 KB
testcase_25 AC 296 ms
77,696 KB
testcase_26 AC 166 ms
77,636 KB
testcase_27 AC 805 ms
77,696 KB
testcase_28 AC 321 ms
77,824 KB
testcase_29 AC 398 ms
77,568 KB
testcase_30 AC 1,346 ms
78,080 KB
testcase_31 AC 304 ms
78,088 KB
testcase_32 AC 1,385 ms
78,032 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):
        for c in range(b,m + 1):
            for d in range(c,m + 1):
                s = a * a + (a + b) * b + (a + b + c) * c + (a + b + c + d) * d
                if s > n:
                    break
                if a == b == c == d:
                    ans[s] += 1
                elif a == b == c or b == c == d:
                    ans[s] += 4
                elif a == b and c == d:
                    ans[s] += 6
                elif a == b or b == c or c == d:
                    ans[s] += 12
                else:
                    ans[s] += 24

for i in ans:
    print(i)
0