結果

問題 No.646 逆ピラミッド
ユーザー focus
提出日時 2018-02-11 18:35:22
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 299 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 67,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 10:41:31
合計ジャッジ時間 1,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
#include<cstdio>
#include<map>
using namespace std;
int main(){
    int N,n;
    cin >> N;
    n = N;
    do{
        for(int i=0;i<N;i++){
            cout << n;
        }
        cout << "\n";
    }while(N--);
    return 0;
}
0