結果

問題 No.646 逆ピラミッド
ユーザー cielciel
提出日時 2017-11-03 13:02:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 41 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 11,268 KB
実行使用メモリ 15,344 KB
最終ジャッジ日時 2023-08-14 16:33:49
合計ジャッジ時間 1,775 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
15,096 KB
testcase_01 AC 69 ms
15,328 KB
testcase_02 AC 64 ms
15,140 KB
testcase_03 AC 64 ms
15,144 KB
testcase_04 AC 67 ms
15,100 KB
testcase_05 AC 67 ms
15,048 KB
testcase_06 AC 65 ms
15,200 KB
testcase_07 AC 65 ms
15,344 KB
testcase_08 AC 65 ms
15,024 KB
testcase_09 AC 65 ms
15,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
n.downto(1){|i|puts n.to_s*i}
0