結果

問題 No.627 ランダムウォークの軌跡
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-28 23:58:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,452 KB
最終ジャッジ日時 2024-06-30 07:54:50
合計ジャッジ時間 7,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,716 KB
testcase_01 AC 130 ms
54,056 KB
testcase_02 AC 130 ms
53,968 KB
testcase_03 AC 132 ms
54,120 KB
testcase_04 AC 131 ms
53,952 KB
testcase_05 AC 132 ms
54,168 KB
testcase_06 AC 133 ms
54,004 KB
testcase_07 AC 128 ms
53,936 KB
testcase_08 AC 125 ms
53,864 KB
testcase_09 AC 137 ms
53,948 KB
testcase_10 AC 120 ms
52,984 KB
testcase_11 AC 124 ms
53,032 KB
testcase_12 AC 136 ms
54,160 KB
testcase_13 AC 134 ms
54,092 KB
testcase_14 AC 134 ms
54,140 KB
testcase_15 AC 135 ms
53,900 KB
testcase_16 AC 137 ms
53,908 KB
testcase_17 AC 136 ms
54,084 KB
testcase_18 AC 136 ms
54,040 KB
testcase_19 AC 140 ms
54,120 KB
testcase_20 AC 143 ms
54,088 KB
testcase_21 AC 138 ms
54,192 KB
testcase_22 AC 140 ms
54,044 KB
testcase_23 AC 137 ms
54,076 KB
testcase_24 AC 140 ms
54,184 KB
testcase_25 AC 132 ms
53,988 KB
testcase_26 AC 138 ms
54,024 KB
testcase_27 AC 139 ms
54,200 KB
testcase_28 AC 138 ms
54,080 KB
testcase_29 AC 138 ms
53,928 KB
testcase_30 AC 128 ms
54,044 KB
testcase_31 WA -
testcase_32 AC 132 ms
54,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int t = in.nextInt();

        String ans = "T";
        int[] x = new int[t];

        for(int i=0; i<t; i++) {
            x[i] = in.nextInt();
        }

        if(t == 1 && (x[0] != 1 || x[0] != -1)) ans = "F";
        if(x[0] == 0) ans = "F";
        for(int i=1; i<t; i++) {
            if(Math.abs(x[i-1] - x[i]) > 1 || x[i-1] == x[i]) {
                ans = "F";
                break;
            }
        }

        System.out.println(ans);
    }
}
0