結果
問題 | No.646 逆ピラミッド |
ユーザー | natumerinkawaii |
提出日時 | 2018-02-13 16:13:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 421 bytes |
コンパイル時間 | 608 ms |
コンパイル使用メモリ | 53,600 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-07 02:38:39 |
合計ジャッジ時間 | 1,188 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
//問題文 整数N (1以上100以下)が与えられるので、 Nの数字で構成されたN段の逆ピラミッドを左詰めで出力してください。 ピラミッドの形状などはテストケースを参考にしてください。 #include<iostream> using namespace std; int main(){ int i; do{ cin>>i; }while(i<0||i>100); for(int j=i;j<=0;i--){ for(int k=j;k<=0;k--){ cout<<i; } cout<<"\n"; } return 0; }