結果
問題 |
No.646 逆ピラミッド
|
ユーザー |
|
提出日時 | 2018-02-11 01:40:17 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 233 bytes |
コンパイル時間 | 318 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 21:48:45 |
合計ジャッジ時間 | 701 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 7 |
ソースコード
#include <stdio.h> int main(){ int i, j, N; // scanf("%d", &N); for(i = N; i > 0; i--){ for(j = i; j > 0; j--){ printf("%d", N); } printf("\n"); } printf("\n"); return 0; }