結果
| 問題 | No.646 逆ピラミッド |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-14 14:21:46 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 198 bytes |
| 記録 | |
| コンパイル時間 | 1,755 ms |
| コンパイル使用メモリ | 207,764 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-08 00:11:02 |
| 合計ジャッジ時間 | 4,859 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 7 |
ソースコード
#include <bits/stdc++.h>
int main()
{
int N;std::cin >> N;
for(int i = 1; i<= N; i++){
for(int j =0;j < i; j++){std::cout << N;}
std::cout << std::endl;
}
return 0;
}