結果

問題 No.1318 ABCD quadruplets
ユーザー tatyamtatyam
提出日時 2020-07-24 23:50:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,381 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 79,952 KB
最終ジャッジ日時 2024-06-25 23:07:28
合計ジャッジ時間 12,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 41 ms
52,312 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 40 ms
52,736 KB
testcase_12 AC 41 ms
52,608 KB
testcase_13 AC 104 ms
76,752 KB
testcase_14 AC 490 ms
79,352 KB
testcase_15 AC 85 ms
76,708 KB
testcase_16 AC 675 ms
78,300 KB
testcase_17 AC 94 ms
77,564 KB
testcase_18 AC 431 ms
78,808 KB
testcase_19 AC 197 ms
78,704 KB
testcase_20 AC 103 ms
76,468 KB
testcase_21 AC 149 ms
77,000 KB
testcase_22 AC 85 ms
78,228 KB
testcase_23 AC 1,216 ms
79,836 KB
testcase_24 AC 1,157 ms
79,872 KB
testcase_25 AC 273 ms
79,308 KB
testcase_26 AC 173 ms
78,812 KB
testcase_27 AC 862 ms
79,736 KB
testcase_28 AC 322 ms
79,492 KB
testcase_29 AC 393 ms
79,616 KB
testcase_30 AC 1,381 ms
79,952 KB
testcase_31 AC 304 ms
79,560 KB
testcase_32 AC 1,301 ms
79,872 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 + (a + b) * b > n:
            break
        for c in range(b,m + 1):
            if a * a + (a + b) * b + (a + b + c) * c > n:
                break
            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
print("\n".join(str(i) for i in ans))
0