結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 13:58:39
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 31,032 KB
実行使用メモリ 72,900 KB
最終ジャッジ日時 2024-11-15 16:41:49
合計ジャッジ時間 21,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
36,452 KB
testcase_01 AC 38 ms
72,900 KB
testcase_02 AC 37 ms
36,212 KB
testcase_03 AC 37 ms
39,092 KB
testcase_04 AC 38 ms
36,440 KB
testcase_05 AC 38 ms
38,968 KB
testcase_06 AC 40 ms
36,396 KB
testcase_07 AC 40 ms
39,088 KB
testcase_08 AC 38 ms
32,396 KB
testcase_09 AC 38 ms
31,356 KB
testcase_10 AC 38 ms
31,132 KB
testcase_11 AC 38 ms
31,236 KB
testcase_12 AC 38 ms
30,952 KB
testcase_13 AC 37 ms
31,296 KB
testcase_14 AC 39 ms
31,320 KB
testcase_15 AC 38 ms
31,008 KB
testcase_16 AC 486 ms
39,576 KB
testcase_17 TLE -
testcase_18 AC 113 ms
31,628 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 58 ms
32,784 KB
testcase_22 AC 113 ms
39,400 KB
testcase_23 AC 81 ms
35,728 KB
testcase_24 AC 112 ms
39,420 KB
testcase_25 AC 57 ms
33,036 KB
testcase_26 AC 92 ms
35,652 KB
testcase_27 AC 138 ms
41,884 KB
testcase_28 AC 93 ms
35,904 KB
testcase_29 AC 128 ms
41,376 KB
testcase_30 AC 97 ms
36,128 KB
testcase_31 AC 63 ms
33,424 KB
testcase_32 AC 60 ms
32,912 KB
testcase_33 AC 139 ms
41,828 KB
testcase_34 AC 54 ms
32,724 KB
testcase_35 AC 113 ms
39,320 KB
testcase_36 TLE -
testcase_37 AC 141 ms
42,164 KB
testcase_38 AC 147 ms
42,036 KB
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$nums = explode(" ",trim(fgets(STDIN)));
$numstr = implode(" ", $nums);
sort($nums);
$act = 0;
$tail = strlen($numstr);
while(($num = array_pop($nums)) !== null) {
    $pos = strpos($numstr, $num);
    if($pos > $tail) {
        array_push($nums,$num);
        break;
    }
    $tail = $pos;
}
echo count($nums);
echo PHP_EOL;
0