結果
問題 | No.646 逆ピラミッド |
ユーザー | extelo |
提出日時 | 2018-02-12 17:58:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 171 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 68,400 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-24 20:03:23 |
合計ジャッジ時間 | 3,207 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:6:6: warning: 'num' is used uninitialized [-Wuninitialized] 6 | scanf("%d\n", num); | ~~~~~^~~~~~~~~~~~~ main.cpp:5:5: note: 'num' was declared here 5 | int num; | ^~~
ソースコード
#include <iostream> int main(void) { int num; scanf("%d\n", num); for(int i = num; i>0; i--) { for(int j = i; j>0; j--){ printf("%d", num); } printf("\n"); } return 0; }