結果

問題 No.1475 時計の歯車Easy
ユーザー SKSK
提出日時 2022-12-19 15:09:10
言語 PHP
(8.3.4)
結果
OLE  
実行時間 -
コード長 255 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 32,212 KB
実行使用メモリ 39,612 KB
最終ジャッジ日時 2024-11-18 01:02:14
合計ジャッジ時間 145,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 OLE -
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 OLE -
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 OLE -
testcase_29 OLE -
testcase_30 OLE -
testcase_31 OLE -
testcase_32 OLE -
testcase_33 OLE -
testcase_34 OLE -
testcase_35 OLE -
testcase_36 OLE -
testcase_37 OLE -
testcase_38 OLE -
testcase_39 OLE -
testcase_40 OLE -
testcase_41 OLE -
testcase_42 OLE -
testcase_43 OLE -
testcase_44 OLE -
testcase_45 OLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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

for ($i = 0; $i < $m; $i++) {
    $clock[] = explode(" ",trim(fgets(STDIN)));
     $result = array_splice($clock,0,0);
     asort($result);
    for ($j = 1; $j < $clock[0]; $j++) {
       echo $result[$j]." ";
    }
}



?>
0