結果

問題 No.1318 ABCD quadruplets
ユーザー ああいいああいい
提出日時 2022-01-29 19:50:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,627 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-06-10 19:06:11
合計ジャッジ時間 15,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 44 ms
53,120 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 44 ms
53,504 KB
testcase_08 AC 44 ms
53,504 KB
testcase_09 AC 47 ms
53,632 KB
testcase_10 AC 46 ms
54,144 KB
testcase_11 AC 47 ms
53,760 KB
testcase_12 AC 42 ms
53,248 KB
testcase_13 AC 123 ms
76,760 KB
testcase_14 AC 634 ms
78,080 KB
testcase_15 AC 119 ms
76,560 KB
testcase_16 AC 802 ms
77,696 KB
testcase_17 AC 130 ms
77,520 KB
testcase_18 AC 590 ms
77,696 KB
testcase_19 AC 287 ms
78,304 KB
testcase_20 AC 125 ms
76,648 KB
testcase_21 AC 180 ms
76,928 KB
testcase_22 AC 119 ms
78,336 KB
testcase_23 AC 1,627 ms
78,464 KB
testcase_24 AC 1,475 ms
77,952 KB
testcase_25 AC 367 ms
78,208 KB
testcase_26 AC 225 ms
78,252 KB
testcase_27 AC 1,086 ms
78,336 KB
testcase_28 AC 412 ms
78,208 KB
testcase_29 AC 502 ms
78,080 KB
testcase_30 AC 1,568 ms
77,952 KB
testcase_31 AC 383 ms
78,720 KB
testcase_32 AC 1,590 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(a,b,c,d):
    return a * (a + b + c + d) + b * (b + c + d) + c * (c + d) + d * d
def count(a,b,c,d):
    num = 4
    if a == b:num -= 1
    if b == c:num -= 1
    if c == d:num -= 1
    if num == 1:return 1
    if num == 3:return 12
    if num == 4:return 24
    if a < b or c < d:return 4
    return 6
dat = [0] * (N + 1)
from collections import defaultdict
for a in range(M+1):
    for b in range(a,M+1):
        if f(a,b,b,b) > N:break
        for c in range(b,M+1):
            if f(a,b,c,c) > N:break
            for d in range(c,M+1):
                u = f(a,b,c,d)
                if u <= N:
                    """
                    s = defaultdict(int)
                    s[a] += 1
                    s[b] += 1
                    s[c] += 1
                    s[d] += 1
                    e = 0
                    if len(s) == 1:
                        e = 1
                    elif len(s) == 3:
                        e = 12
                    elif len(s) == 4:
                        e = 24
                    else:
                        if s[a] == 1 or s[a] == 3:
                            e = 4
                        else:
                            e = 6
                    dat[u] += e
                    """
                    dat[u] += count(a,b,c,d)
                else:
                    break
for i in dat:
    print(i)
0