結果

問題 No.646 逆ピラミッド
ユーザー Pachicobue
提出日時 2019-10-14 14:21:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 191,024 KB
最終ジャッジ日時 2025-01-07 22:01:38
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
int main()
{
    int N;std::cin >> N;
    for(int i = 1; i<= N; i++){
        for(int j =0;j < i; j++){std::cout << N;}
        std::cout << std::endl;
    }
    return 0;
}
0