結果

問題 No.646 逆ピラミッド
ユーザー shikaku
提出日時 2018-06-27 21:34:33
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 465 bytes
コンパイル時間 1,213 ms
コンパイル使用メモリ 158,488 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 23:14:56
合計ジャッジ時間 1,744 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
                                                                                   

int main(){
                                                                     

    int n, i, t;

    
    cin >> n;


    for( i = n ; 0 <= i ; i = i - 1 ){

         t = i;

         while( t > 0 ){

                cout << n;

                t -= 1;

                }

         cout << endl;

         }


    return 0;

    }
0