結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 14:03:26
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 75,144 KB
最終ジャッジ日時 2024-11-15 16:42:47
合計ジャッジ時間 21,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
36,444 KB
testcase_01 AC 38 ms
71,104 KB
testcase_02 AC 37 ms
36,652 KB
testcase_03 AC 37 ms
71,120 KB
testcase_04 AC 40 ms
36,372 KB
testcase_05 AC 38 ms
71,640 KB
testcase_06 AC 37 ms
36,428 KB
testcase_07 WA -
testcase_08 AC 37 ms
36,160 KB
testcase_09 AC 37 ms
31,008 KB
testcase_10 AC 37 ms
31,356 KB
testcase_11 AC 38 ms
31,192 KB
testcase_12 AC 37 ms
30,948 KB
testcase_13 AC 38 ms
31,068 KB
testcase_14 AC 38 ms
31,036 KB
testcase_15 AC 37 ms
31,060 KB
testcase_16 AC 465 ms
39,712 KB
testcase_17 TLE -
testcase_18 AC 116 ms
31,500 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 57 ms
33,032 KB
testcase_22 AC 113 ms
39,656 KB
testcase_23 AC 80 ms
35,080 KB
testcase_24 AC 113 ms
39,420 KB
testcase_25 AC 57 ms
33,040 KB
testcase_26 AC 89 ms
35,852 KB
testcase_27 AC 136 ms
40,392 KB
testcase_28 AC 93 ms
35,984 KB
testcase_29 AC 126 ms
40,036 KB
testcase_30 AC 92 ms
35,980 KB
testcase_31 AC 60 ms
33,424 KB
testcase_32 AC 60 ms
33,164 KB
testcase_33 AC 137 ms
40,348 KB
testcase_34 AC 53 ms
32,780 KB
testcase_35 AC 108 ms
39,444 KB
testcase_36 TLE -
testcase_37 AC 140 ms
40,260 KB
testcase_38 AC 142 ms
40,384 KB
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$numstr = trim(fgets(STDIN));
$nums = explode(" ",$numstr);
sort($nums);
$act = 0;
$tail = strlen($numstr);
for($n--;$n > 0;$n--) {
    $pos = strpos($numstr, $nums[$n]);
    if($pos > $tail) {
        $n++;
        break;
    }
    $tail = $pos;
}
echo $n;
echo PHP_EOL;
0