結果
問題 |
No.646 逆ピラミッド
|
ユーザー |
![]() |
提出日時 | 2018-02-24 23:30:27 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 14:25:55 |
合計ジャッジ時間 | 1,474 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 7 |
ソースコード
#include <stdio.h> int main() { int n, i; scanf("%d", &n); while(n > 0) { for (i = n; i > 0; i--) { printf("%d", n); } n--; printf("\n"); } return 0; }