結果
| 問題 | No.646 逆ピラミッド |
| コンテスト | |
| ユーザー |
Badboy17_lille
|
| 提出日時 | 2018-06-14 20:33:22 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 374 ms |
| コンパイル使用メモリ | 37,760 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-20 16:30:25 |
| 合計ジャッジ時間 | 1,085 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include<stdio.h>
int main(void){
int n,d;
scanf("%d",&n);
d=n;
for(int i=0;i<n;i++){
for(int j=0;j<d;j++){
printf("%d",n);
}
printf("\n");
d--;
}
return 0;
}
Badboy17_lille