結果

問題 No.646 逆ピラミッド
ユーザー ayaaya
提出日時 2019-07-31 16:28:25
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 30,460 KB
実行使用メモリ 30,844 KB
最終ジャッジ日時 2024-07-05 06:29:27
合計ジャッジ時間 1,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
30,804 KB
testcase_01 AC 37 ms
30,652 KB
testcase_02 AC 39 ms
30,756 KB
testcase_03 AC 42 ms
30,844 KB
testcase_04 AC 36 ms
30,648 KB
testcase_05 AC 33 ms
30,672 KB
testcase_06 AC 39 ms
30,840 KB
testcase_07 AC 35 ms
30,532 KB
testcase_08 AC 33 ms
30,604 KB
testcase_09 AC 32 ms
30,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num=trim(fgets(STDIN));
for($i=$num;$i>0;$i--){
  $x=$i;
  while($x>0){
    echo $num;
    $x--;
  }
  echo "\n";
}
0