結果

問題 No.677 10^Nの約数
ユーザー dong_fengdong_feng
提出日時 2018-04-30 01:45:03
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 30,824 KB
実行使用メモリ 31,240 KB
最終ジャッジ日時 2024-06-27 23:45:28
合計ジャッジ時間 2,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,240 KB
testcase_01 AC 41 ms
31,032 KB
testcase_02 AC 41 ms
30,968 KB
testcase_03 AC 41 ms
30,876 KB
testcase_04 AC 42 ms
30,808 KB
testcase_05 AC 42 ms
31,100 KB
testcase_06 AC 41 ms
31,132 KB
testcase_07 AC 42 ms
30,856 KB
testcase_08 AC 41 ms
30,800 KB
testcase_09 AC 41 ms
30,984 KB
testcase_10 AC 42 ms
31,000 KB
testcase_11 AC 42 ms
30,856 KB
testcase_12 AC 41 ms
30,980 KB
testcase_13 AC 41 ms
30,984 KB
testcase_14 AC 41 ms
31,092 KB
testcase_15 AC 41 ms
30,924 KB
testcase_16 AC 42 ms
31,064 KB
testcase_17 AC 42 ms
30,908 KB
testcase_18 AC 42 ms
30,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$inputNumber = fgets(STDIN);

$divisors = array();
for($i=0;$i<=$inputNumber;$i++){
    for($j=0;$j<=$inputNumber;$j++){
        array_push($divisors,pow(2,$i)*pow(5,$j));
    }
}

sort($divisors,SORT_NUMERIC);

for($i=0;$i<count($divisors);$i++){
    echo $divisors[$i].PHP_EOL;
}
0