結果

問題 No.627 ランダムウォークの軌跡
ユーザー mondomondo
提出日時 2019-08-13 14:41:58
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 31,116 KB
実行使用メモリ 31,280 KB
最終ジャッジ日時 2024-09-19 13:26:09
合計ジャッジ時間 2,828 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
31,252 KB
testcase_01 AC 45 ms
31,248 KB
testcase_02 AC 42 ms
31,144 KB
testcase_03 AC 42 ms
30,924 KB
testcase_04 AC 43 ms
30,864 KB
testcase_05 AC 42 ms
31,076 KB
testcase_06 AC 42 ms
31,272 KB
testcase_07 AC 42 ms
31,068 KB
testcase_08 AC 42 ms
31,060 KB
testcase_09 AC 42 ms
30,932 KB
testcase_10 AC 42 ms
31,152 KB
testcase_11 AC 42 ms
31,272 KB
testcase_12 AC 44 ms
31,112 KB
testcase_13 AC 43 ms
31,060 KB
testcase_14 AC 43 ms
31,280 KB
testcase_15 AC 41 ms
31,256 KB
testcase_16 AC 42 ms
30,880 KB
testcase_17 AC 42 ms
30,828 KB
testcase_18 AC 42 ms
30,900 KB
testcase_19 AC 42 ms
30,896 KB
testcase_20 AC 42 ms
31,112 KB
testcase_21 AC 42 ms
31,244 KB
testcase_22 AC 44 ms
30,944 KB
testcase_23 AC 43 ms
31,164 KB
testcase_24 AC 43 ms
30,888 KB
testcase_25 AC 43 ms
31,104 KB
testcase_26 AC 42 ms
31,044 KB
testcase_27 AC 43 ms
31,160 KB
testcase_28 AC 42 ms
30,932 KB
testcase_29 AC 43 ms
30,828 KB
testcase_30 WA -
testcase_31 AC 42 ms
31,148 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$count = trim(fgets(STDIN));
$array = array();
for ($i = 0; $i < $count; $i++) {
    $array[] = trim(fgets(STDIN));
}
$cnt = 0;
for ($i = 0; $i < $count-1; $i++){
    if (abs($array[$i] - $array[$i+1]) == 1) {
        $cnt++;
    }
}
if ($cnt == count($array) - 1) {
    echo "T";
} else {
    echo "F";
}
0