結果

問題 No.365 ジェンガソート
ユーザー papinianuspapinianus
提出日時 2016-09-01 14:10:32
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 30,616 KB
実行使用メモリ 62,336 KB
最終ジャッジ日時 2024-11-15 16:43:13
合計ジャッジ時間 20,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
35,932 KB
testcase_01 WA -
testcase_02 AC 42 ms
35,852 KB
testcase_03 AC 43 ms
61,968 KB
testcase_04 AC 42 ms
35,736 KB
testcase_05 AC 42 ms
61,828 KB
testcase_06 AC 42 ms
35,592 KB
testcase_07 AC 43 ms
62,336 KB
testcase_08 AC 42 ms
36,068 KB
testcase_09 AC 43 ms
30,596 KB
testcase_10 WA -
testcase_11 AC 43 ms
30,488 KB
testcase_12 WA -
testcase_13 AC 43 ms
30,980 KB
testcase_14 AC 42 ms
30,768 KB
testcase_15 AC 44 ms
30,992 KB
testcase_16 AC 426 ms
31,116 KB
testcase_17 TLE -
testcase_18 AC 117 ms
30,860 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
30,928 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 43 ms
30,972 KB
testcase_35 AC 44 ms
31,244 KB
testcase_36 TLE -
testcase_37 WA -
testcase_38 AC 44 ms
31,500 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;$n--) {
    $pos = strpos($numstr, (string)$n);
    if($pos > $tail) {
        break;
    }
    $tail = $pos;
}
echo $n;
echo PHP_EOL;
0