結果
問題 | No.646 逆ピラミッド |
ユーザー | cider |
提出日時 | 2018-02-13 10:50:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,092 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 80,404 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-28 15:35:07 |
合計ジャッジ時間 | 1,210 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<functional> #include<fstream> #include<utility> #include<bitset> #include<map> #include<deque> #include<cmath> #define FOR(i, a, b) for (i = a; i < b; ++i) #define rep(N) for (int i = 0; i < N; ++i) #define For(i, N) for (i = 0; i < N; ++i) #define rev(N) for (int i = N - 1; i >= 0; --i) #define all(v) v.begin(), v.end() #define make(N) int N; cin >> N; #define mod 1000000007 #define re return 0 using namespace std; using ll = long long int; using vi = vector<int>; using vvi = vector<vector<int>>; using vll = vector<ll>; using vb = vector<bool>; using vvb = vector<vector<bool>>; using vs = vector<string>; using pii = pair<int, int>; using pis = pair<int, string>; template<typename T> void say(T s) { cout << s << endl; } template<typename T> void say(vector<T> s) { auto itr = s.begin(); cout << *(itr++); while (itr != s.end()) { cout << " " << *(itr++); } cout << endl; } int main() { make(N); for (int i = N; i > 0; --i) { for (int j = 0; j < i; ++j)cout << N; cout << endl; } }