求数据结构的时间复杂度和频度

for(int i=1;i<=n;i++)
for(int j=1;j<=i;j++)
for(int k=1;k<=j;k++)
x=x+1;
的时间复杂度和频度

时间复杂度还是n的三次方
频度指什麽?x最后是多少吗?