結果

問題 No.3010 Print inside /bin
ユーザー 古寺いろは古寺いろは
提出日時 2015-05-03 23:54:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 35 ms / 1,500 ms
コード長 315 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 30,724 KB
実行使用メモリ 31,192 KB
最終ジャッジ日時 2024-07-05 18:01:00
合計ジャッジ時間 823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = array();
$res_dir = opendir( '/bin' );
$count = 0;

while( $file_name = readdir( $res_dir ) ){
	if($file_name[0] != '.'){
		$array[$count] = $file_name;
		$count = $count + 1;
	}
}

natsort($array);

foreach ($array as $i => $value) {
    print $array[$i];
    print "\n";
}

closedir( $res_dir );
?>
0