結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 13:59:58
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 345 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 71,464 KB
最終ジャッジ日時 2024-11-15 16:42:11
合計ジャッジ時間 21,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
36,448 KB
testcase_01 AC 37 ms
70,988 KB
testcase_02 AC 37 ms
36,272 KB
testcase_03 AC 36 ms
71,352 KB
testcase_04 AC 37 ms
36,064 KB
testcase_05 AC 37 ms
71,464 KB
testcase_06 AC 36 ms
39,600 KB
testcase_07 AC 36 ms
36,400 KB
testcase_08 AC 37 ms
36,080 KB
testcase_09 AC 36 ms
30,724 KB
testcase_10 AC 36 ms
30,840 KB
testcase_11 AC 38 ms
30,768 KB
testcase_12 AC 38 ms
31,204 KB
testcase_13 AC 38 ms
31,308 KB
testcase_14 AC 38 ms
30,924 KB
testcase_15 AC 37 ms
31,348 KB
testcase_16 AC 478 ms
39,444 KB
testcase_17 TLE -
testcase_18 AC 115 ms
31,632 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 56 ms
33,104 KB
testcase_22 AC 112 ms
39,524 KB
testcase_23 AC 80 ms
35,084 KB
testcase_24 AC 112 ms
39,420 KB
testcase_25 AC 57 ms
33,164 KB
testcase_26 AC 88 ms
35,980 KB
testcase_27 AC 135 ms
39,976 KB
testcase_28 AC 92 ms
35,984 KB
testcase_29 AC 125 ms
40,004 KB
testcase_30 AC 94 ms
36,112 KB
testcase_31 AC 60 ms
33,296 KB
testcase_32 AC 59 ms
33,168 KB
testcase_33 AC 134 ms
40,316 KB
testcase_34 AC 52 ms
32,780 KB
testcase_35 AC 109 ms
39,316 KB
testcase_36 TLE -
testcase_37 AC 138 ms
40,484 KB
testcase_38 AC 140 ms
40,612 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);
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