結果

問題 No.646 逆ピラミッド
ユーザー dyechidyechi
提出日時 2019-03-29 10:37:27
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 2,823 ms
コンパイル使用メモリ 30,304 KB
実行使用メモリ 31,076 KB
最終ジャッジ日時 2024-11-06 23:45:05
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,880 KB
testcase_01 AC 43 ms
30,764 KB
testcase_02 AC 43 ms
30,752 KB
testcase_03 AC 43 ms
30,800 KB
testcase_04 AC 44 ms
30,896 KB
testcase_05 AC 42 ms
30,580 KB
testcase_06 AC 43 ms
31,076 KB
testcase_07 AC 43 ms
30,828 KB
testcase_08 AC 42 ms
30,940 KB
testcase_09 AC 43 ms
31,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));

for ($i=$s; $i>0; $i--) {
    echo str_repeat($s, $i);
    echo PHP_EOL;
}
?>
0