結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 14:12:08
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 228 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 62,692 KB
最終ジャッジ日時 2024-11-15 16:43:34
合計ジャッジ時間 21,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
36,632 KB
testcase_01 AC 39 ms
62,544 KB
testcase_02 AC 38 ms
36,032 KB
testcase_03 AC 39 ms
62,368 KB
testcase_04 AC 40 ms
36,268 KB
testcase_05 AC 39 ms
62,692 KB
testcase_06 AC 37 ms
36,288 KB
testcase_07 AC 39 ms
62,684 KB
testcase_08 AC 38 ms
36,592 KB
testcase_09 AC 39 ms
31,000 KB
testcase_10 AC 39 ms
31,028 KB
testcase_11 AC 40 ms
30,924 KB
testcase_12 AC 39 ms
31,016 KB
testcase_13 AC 38 ms
31,096 KB
testcase_14 AC 36 ms
30,872 KB
testcase_15 AC 38 ms
30,988 KB
testcase_16 AC 392 ms
31,500 KB
testcase_17 TLE -
testcase_18 AC 114 ms
30,992 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 38 ms
31,208 KB
testcase_22 AC 37 ms
31,632 KB
testcase_23 AC 37 ms
31,304 KB
testcase_24 AC 38 ms
31,628 KB
testcase_25 AC 39 ms
30,900 KB
testcase_26 AC 39 ms
31,376 KB
testcase_27 AC 41 ms
31,632 KB
testcase_28 AC 38 ms
31,244 KB
testcase_29 AC 38 ms
31,632 KB
testcase_30 AC 39 ms
31,184 KB
testcase_31 AC 39 ms
31,180 KB
testcase_32 AC 39 ms
30,900 KB
testcase_33 AC 41 ms
31,696 KB
testcase_34 AC 38 ms
30,876 KB
testcase_35 AC 39 ms
31,504 KB
testcase_36 TLE -
testcase_37 AC 38 ms
31,884 KB
testcase_38 AC 41 ms
31,756 KB
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$numstr = trim(fgets(STDIN));
$tail = strlen($numstr);
for(;$n;$n--) {
    $pos = strpos($numstr, (string)$n);
    if($pos > $tail) {
        break;
    }
    $tail = $pos;
}
echo $n;
echo PHP_EOL;
0