标签:
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 9069 Accepted Submission(s): 7254
1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 char map[55][55]; 6 int main() 7 { 8 int a,n,i,j; 9 scanf("%d",&n); 10 while(n--) 11 { 12 scanf("%d",&a); 13 for(i=0;i<a*3;i++) 14 { 15 for(j=0;j<a;j++) 16 printf("HDU"); 17 printf("\n"); 18 } 19 } 20 return 0; 21 }
标签:
原文地址:http://www.cnblogs.com/Eric-keke/p/4719943.html