結果

問題 No.646 逆ピラミッド
ユーザー Pachicobue
提出日時 2018-02-11 18:42:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 162 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 66,004 KB
最終ジャッジ日時 2025-01-05 08:19:34
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main()
{
int N;cin>>N;
for(int i = N;i>=0;i--){
for(int j = 0; j < i ; j++){
cout << N;
}
cout << endl;
}
return 0;
}
0