結果
問題 | No.646 逆ピラミッド |
ユーザー | makition |
提出日時 | 2018-04-24 14:09:15 |
言語 | C (gcc 12.3.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 1,300 ms |
コンパイル使用メモリ | 28,672 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 15:54:34 |
合計ジャッジ時間 | 650 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int] 2 | main() | ^~~~
ソースコード
#include <stdio.h> main() { int a, b; scanf("%d", &a); b = a; for(int i = 0; 0 < b; i++) { for(int j = 0; j < b; j++) { printf("%d", a); } printf("\n"); b--; } printf("\n"); return 0; }