結果
問題 | No.646 逆ピラミッド |
ユーザー | aaa |
提出日時 | 2018-02-09 22:40:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 949 ms |
コンパイル使用メモリ | 84,972 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 16:25:31 |
合計ジャッジ時間 | 1,163 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
ソースコード
//C++14 (Clang 3.8.0) #include <vector> #include <list> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> #include <string> #include <climits> using namespace std; typedef long long ll; typedef pair<long long,long long> P; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<i+1;j++){ cout<<n; } cout<<endl; } return 0; }