結果

問題 No.627 ランダムウォークの軌跡
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-29 00:03:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-30 07:55:09
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,864 KB
testcase_01 AC 124 ms
54,156 KB
testcase_02 AC 123 ms
54,000 KB
testcase_03 AC 130 ms
54,136 KB
testcase_04 AC 128 ms
54,148 KB
testcase_05 AC 129 ms
54,248 KB
testcase_06 AC 130 ms
54,172 KB
testcase_07 AC 117 ms
52,980 KB
testcase_08 AC 131 ms
53,972 KB
testcase_09 AC 128 ms
54,188 KB
testcase_10 AC 134 ms
54,316 KB
testcase_11 AC 128 ms
54,204 KB
testcase_12 AC 137 ms
54,016 KB
testcase_13 AC 131 ms
54,104 KB
testcase_14 AC 135 ms
54,000 KB
testcase_15 AC 116 ms
52,776 KB
testcase_16 AC 131 ms
54,080 KB
testcase_17 AC 121 ms
52,956 KB
testcase_18 AC 131 ms
54,060 KB
testcase_19 AC 135 ms
54,152 KB
testcase_20 AC 135 ms
54,108 KB
testcase_21 AC 136 ms
53,964 KB
testcase_22 AC 133 ms
54,056 KB
testcase_23 AC 138 ms
53,988 KB
testcase_24 AC 137 ms
53,708 KB
testcase_25 AC 136 ms
53,824 KB
testcase_26 AC 135 ms
53,888 KB
testcase_27 AC 139 ms
53,984 KB
testcase_28 AC 136 ms
54,048 KB
testcase_29 AC 137 ms
54,004 KB
testcase_30 AC 129 ms
54,208 KB
testcase_31 AC 129 ms
54,020 KB
testcase_32 AC 131 ms
54,112 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)
            ans = "T";
        else if(t == 1 && x[0] == -1)
            ans = "T";
        else if(t == 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