結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 13:53:36
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 72,532 KB
最終ジャッジ日時 2024-11-15 16:41:19
合計ジャッジ時間 26,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
35,984 KB
testcase_01 AC 43 ms
71,352 KB
testcase_02 AC 43 ms
35,988 KB
testcase_03 AC 43 ms
72,244 KB
testcase_04 AC 43 ms
36,160 KB
testcase_05 AC 42 ms
71,820 KB
testcase_06 AC 43 ms
36,080 KB
testcase_07 AC 43 ms
64,364 KB
testcase_08 AC 44 ms
35,852 KB
testcase_09 AC 43 ms
72,532 KB
testcase_10 AC 42 ms
39,480 KB
testcase_11 AC 45 ms
36,240 KB
testcase_12 AC 44 ms
35,968 KB
testcase_13 AC 43 ms
30,588 KB
testcase_14 AC 44 ms
30,540 KB
testcase_15 AC 43 ms
30,684 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 835 ms
31,760 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 65 ms
33,168 KB
testcase_22 AC 127 ms
40,436 KB
testcase_23 AC 89 ms
35,560 KB
testcase_24 AC 123 ms
40,152 KB
testcase_25 AC 65 ms
33,168 KB
testcase_26 AC 102 ms
36,360 KB
testcase_27 AC 156 ms
41,632 KB
testcase_28 AC 105 ms
36,568 KB
testcase_29 AC 141 ms
41,252 KB
testcase_30 AC 105 ms
36,844 KB
testcase_31 AC 69 ms
33,420 KB
testcase_32 AC 68 ms
33,164 KB
testcase_33 AC 156 ms
41,452 KB
testcase_34 AC 58 ms
32,656 KB
testcase_35 AC 123 ms
40,060 KB
testcase_36 TLE -
testcase_37 AC 149 ms
41,660 KB
testcase_38 AC 166 ms
41,532 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)));
$numOrig = $nums;
sort($nums);
$act = 0;
$tail = $n;
while(($num = array_pop($nums)) !== null) {
    $pos = array_search($num, $numOrig);
    if($pos > $tail) {
        array_push($nums,$num);
        break;
    }
    $tail = $pos;
}
echo count($nums);
echo PHP_EOL;
0