// yukicoder: No.646 逆ピラミッド // 2019.4.30 bal4u #include #include #if 1 #define pc(c) putchar_unlocked(c) #define gc() getchar_unlocked() #else #define gc() getchar() #define pc(c) putchar(c) #endif int ins(char *s) // 文字列の入力 スペース以下の文字で入力終了 { char *p = s; do *s = gc(); while (*s++ > ' '); *--s = 0; return s - p; } void outs(char *s) { while (*s) pc(*s++); } char n[4]; int w; int main() { int i, N; ins(n); N = atoi(n); while (N > 0) { for (i = 0; i < N; i++) outs(n); pc('\n'); N--; } return 0; }