結果
| 問題 | No.646 逆ピラミッド |
| コンテスト | |
| ユーザー |
Haijinn
|
| 提出日時 | 2018-02-11 14:37:16 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 214 bytes |
| 記録 | |
| コンパイル時間 | 50 ms |
| コンパイル使用メモリ | 35,584 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-25 01:32:00 |
| 合計ジャッジ時間 | 1,129 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
#include <stdio.h>
#include <string.h>
int main(){
int n;
int i,j;
scanf("%d",&n);
for(i=n;0<i;i--){
for(j=0;j<i;j++){
printf("%d",n);
}
printf("\n\n");
}
return 0;
}
Haijinn