結果

問題 No.287 場合の数
ユーザー titiatitia
提出日時 2022-10-08 02:45:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-13 01:45:37
合計ジャッジ時間 7,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
74,880 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 45 ms
59,136 KB
testcase_03 AC 446 ms
75,264 KB
testcase_04 AC 434 ms
75,392 KB
testcase_05 AC 264 ms
75,264 KB
testcase_06 AC 53 ms
60,928 KB
testcase_07 AC 94 ms
69,632 KB
testcase_08 AC 154 ms
75,392 KB
testcase_09 AC 266 ms
75,520 KB
testcase_10 AC 434 ms
75,776 KB
testcase_11 AC 77 ms
66,816 KB
testcase_12 AC 361 ms
75,008 KB
testcase_13 AC 57 ms
63,488 KB
testcase_14 AC 108 ms
72,064 KB
testcase_15 AC 252 ms
74,880 KB
testcase_16 AC 117 ms
73,084 KB
testcase_17 AC 333 ms
75,136 KB
testcase_18 AC 91 ms
69,288 KB
testcase_19 AC 292 ms
75,776 KB
testcase_20 AC 140 ms
75,392 KB
testcase_21 AC 266 ms
75,520 KB
testcase_22 AC 250 ms
75,124 KB
testcase_23 AC 190 ms
75,392 KB
testcase_24 AC 109 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

X=[0]*(n*4+1)

for a in range(n+1):
    for b in range(n+1):
        for c in range(n+1):
            for d in range(n+1):
                X[a+b+c+d]+=1
                
ANS=0

for i in range(len(X)):
    k=6*n-i

    if k<len(X):
        ANS+=X[i]*X[k]

print(ANS)
0