Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 3

\documentclass{ctexart}

\title{表示论综述}
\author{2017112101 陈博文}
\begin{document}
\maketitle
\section{理论介绍}
\subsection{群论基础知识}
\paragraph{}qunshiyizhong

\begin{align}
a+b&=c\\
d&=e+f+g
\end{align}

\end{document}

\documentclass{article}
\begin{document}

\begin{align}
a+b&=c\\
d&=e+f+g
\end{align}

\end{document}

results=[];
A=zeros(1,6);
Moved=zeros(1,6);
for k=0:999999
A(1)=k-10*floor[k/10];
A(2)=k-100*floor[k/100];
A(3)=k-1000*floor[k/1000];
A(4)=k-10000*floor[k/10000];
A(5)=k-100000*floor[k/100000];
A(6)=(k-A(5))/100000;
A(5)=(A(5)-A(4))/10000;
A(4)=(A(4)-A(3))/1000;
A(3)=(A(3)-A(2))/100;
A(2)=(A(2)-A(1))/10;
Moved(1:5)=A(2:6);
if sum(A.^2)-dot(A,Moved)=1
results=[results A'];
end
end

tic
results=[];
for k1=0:5
for k2=0:5
for k3=0:5
for k4=0:5
for k5=0:5
for k6=0:5
if k1^2+k2^2+k3^2+k4^2+k5^2+k6^2-k1*k2-k2*k3-k3*k4-k4*k5-k5*k6==1
results=[results [k1 k2 k3 k4 k5 k6]'];
end
end
end
end
end
end
end
toc

>> tic
results=[];
for k1=0:10
for k2=0:10
for k3=0:10
for k4=0:10
for k5=0:10
for k6=0:10
if k1^2+k2^2+k3^2+k4^2+k5^2+k6^2-k1*k2-k2*k3-k3*k4-k4*k5-k5*k6==1
results=[results [k1 k2 k3 k4 k5 k6]'];
end
end
end
end
end
end
end
toc
时间已过 0.058779 秒。
>> results

results =

1 至 17 列

0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 1 1
0 0 0 0 0 0 0 0 0 0 1 1 1
1 1 0 1
0 0 0 0 0 0 1 1 1 1 0 1 1
1 1 0 0
0 0 0 1 1 1 0 1 1 1 0 0 1
1 1 0 0
0 1 1 0 1 1 0 0 1 1 0 0 0
1 1 0 0
1 0 1 0 0 1 0 0 0 1 0 0 0
0 1 0 0

18 至 21 列

1 1 1 1
1 1 1 1
1 1 1 1
0 1 1 1
0 0 1 1
0 0 0 1

>>

adb shell 'sqlite3 /data/data/com.google.android.gsf/databases/gservices.db\"select


* from main where name = "android_id";"'

You might also like