HustOJ - 1011
1 #include<stdio.h> 2 int main() 3 { 4 int a,b,s,t,i,j; 5 while((scanf("%d",&a)==1)) 6 { 7 if (a<=12&&a>=1) 8 { 9 t=0; 10 for (i=1;i<=a;i++) 11 { 12 s=1; 13 for (j=1;j<=i;j++)1011 最大公約數14 { 15 s=s*j; 16 } 17 t=t+s; 18 } 19 printf("%d\n",t); 20 } 21 } 22 }
HustOJ - 1011
相關推薦
HustOJ - 1011
cnblogs play printf int bsp closed spa hid == 1 #include<stdio.h> 2 int main() 3 { 4 int a,b,s,t,i,j; 5 while((scanf
HustOJ - 1010
++ 分享 lose open pri color src pen spa 1 #include<stdio.h> 2 int main() 3 { 4 int a,b,s,t,i,j; 5 while((scanf("%d",&a
HustOJ - 1009
div one style sed play close gif splay open 1 #include<stdio.h> 2 int main() 3 { 4 int n,i,t; 5 float q,s; 6 wh
HustOJ - 1021
std truct img 技術 esp 亂碼 != using setw 1 #include<iostream> 2 #include<vector> 3 #include<algorithm> 4 #include<
HustOJ - 1023
ios aps open spa esp cnblogs show http name 1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 char n; 6
HustOJ - 1014
hust tdi sca class splay src hustoj i++ style 1 #include<stdio.h> 2 int main() 3 { 4 int x,i,n,a,c; 5 while(scanf(
HustOJ - 1019
gif clu insert 技術 -a open alt lap multi 1 #include<iostream> 2 #include<set> 3 #include<string> 4 #include<a
HustOJ - 1016
play pen hustoj span sed 技術 %d ++ gif 1 #include<stdio.h> 2 int main() 3 { 4 int n,i,s,j,a[100],w,k; 5 while(scanf("
HustOJ - 1007
log hustoj spa img none 參數 tdi 分享 class 1 #include<stdio.h> 2 int main () 3 { 4 long long a,b,s; 5 6 while(sca
HustOJ - 1013
closed ide img clu 技術分享 pri alt div nbsp 1 #include<stdio.h> 2 int main() 3 { 4 int i,j,s,b,a; 5 float t; 6 s=0
HustOJ - 1026
相同 clas open 否則 style online pen using pro 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main()
HustOJ - 1027
分享 系列 src href string size clu char .cn 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main() 5
HustOJ - 1025
技術分享 show opened std sca col pro ble tar 1 #include<stdio.h> 2 int main() 3 { 4 int d,n,i,j; 5 scanf("%d",&d);
hdu 1011 樹型dp
return () name space ring con end code main #include <cstdio> #include <iostream> #include <cstring> #include <v
【51NOD-0】1011 最大公約數GCD
style lose gif lap blog %d 51nod ret display 【算法】歐幾裏德算法 #include<cstdio> int gcd(int a,int b) {return b==0?a:gcd(b,a%b);} int mai
hdu_6055 : Regular polygon (2017 多校第二場 1011) 【計算幾何】
include int scan ble pro set sort 根據 可能 題目鏈接 有個結論: 平面坐標系上,坐標為整數的情況下,n個點組成正n邊形時,只可能組成正方形。 然後根據這個結論來做。 我是先把所有點按照 x為第一關鍵字,y為第二關鍵字 排序,然後枚舉向量
ACdreamoj 1011(樹狀數組維護字符串hash前綴和)
cdr popu stdin ace fin 代碼 long long 方法 snippet 題目鏈接:http://acdream.info/problem?pid=1019 題意:兩種操作,第一種將字符串某個位置的字符換為還有一個字符。另外一種查詢某個連續子序
52nod 1011 最大公約數GCD
brush str long long 水題 inpu iostream text lac ~~ 輸入2個正整數A,B,求A與B的最大公約數。 Input 2個數A,B,中間用空格隔開。(1<= A,B <= 10^9) Output 輸出
研(tu)究(cao)SFTP(HUSTOJ)……
t權限 putty tty 手動 roo 安全 人性 記得 mod 學校題庫加數據,HUSTOJ一點也不人道,數據不能一起加,只能一個一個手動加,20組數據一共40個文件真是累…… 於是SFTP一發,發現在外網下沒root權限不能加數據……woc 試了很多方法,最終都指向開
2017 ACM/ICPC Asia Regional Qingdao Online - 1011 A Cubic number and A Cubic Number
lin con namespace out 是我 通過 asi syn 兩個 2017-09-17 17:12:11 writer:pprp 找規律,質數只有是兩個相鄰的立方數的差才能形成,公式就是3 * n * (n + 1) +1, 判斷讀入的數是不是滿足 這次依然只是