結果

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

ソースコード

diff #

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