結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 13:49:28
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 42,868 KB
最終ジャッジ日時 2024-11-15 16:40:52
合計ジャッジ時間 4,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,680 KB
testcase_01 AC 41 ms
30,616 KB
testcase_02 AC 41 ms
30,732 KB
testcase_03 AC 40 ms
30,560 KB
testcase_04 AC 40 ms
31,084 KB
testcase_05 AC 41 ms
30,800 KB
testcase_06 AC 40 ms
30,924 KB
testcase_07 AC 41 ms
30,608 KB
testcase_08 AC 40 ms
30,756 KB
testcase_09 AC 40 ms
30,988 KB
testcase_10 AC 45 ms
30,832 KB
testcase_11 AC 40 ms
30,604 KB
testcase_12 AC 40 ms
31,084 KB
testcase_13 AC 40 ms
30,836 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 118 ms
39,144 KB
testcase_23 AC 85 ms
35,468 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 94 ms
35,404 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 99 ms
36,012 KB
testcase_31 AC 64 ms
33,296 KB
testcase_32 WA -
testcase_33 AC 142 ms
41,576 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 145 ms
41,664 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = $n;
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