結果

問題 No.627 ランダムウォークの軌跡
ユーザー trkage_tedtrkage_ted
提出日時 2018-01-13 20:41:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 37,268 KB
最終ジャッジ日時 2024-06-06 10:18:24
合計ジャッジ時間 4,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,120 KB
testcase_01 AC 57 ms
36,548 KB
testcase_02 AC 56 ms
36,888 KB
testcase_03 AC 49 ms
36,536 KB
testcase_04 AC 48 ms
36,888 KB
testcase_05 AC 49 ms
37,124 KB
testcase_06 AC 48 ms
37,056 KB
testcase_07 AC 48 ms
36,888 KB
testcase_08 AC 46 ms
36,936 KB
testcase_09 AC 46 ms
36,984 KB
testcase_10 AC 48 ms
37,172 KB
testcase_11 AC 49 ms
36,672 KB
testcase_12 AC 49 ms
36,852 KB
testcase_13 AC 47 ms
36,940 KB
testcase_14 AC 48 ms
37,016 KB
testcase_15 AC 49 ms
36,864 KB
testcase_16 AC 46 ms
37,152 KB
testcase_17 AC 48 ms
36,932 KB
testcase_18 AC 46 ms
37,100 KB
testcase_19 AC 46 ms
36,544 KB
testcase_20 AC 46 ms
37,268 KB
testcase_21 AC 47 ms
36,964 KB
testcase_22 AC 49 ms
36,660 KB
testcase_23 AC 47 ms
36,540 KB
testcase_24 AC 47 ms
37,040 KB
testcase_25 AC 46 ms
37,140 KB
testcase_26 AC 45 ms
37,092 KB
testcase_27 AC 49 ms
36,548 KB
testcase_28 AC 49 ms
36,964 KB
testcase_29 AC 48 ms
36,948 KB
testcase_30 AC 46 ms
37,064 KB
testcase_31 AC 46 ms
37,024 KB
testcase_32 AC 46 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws IOException {

		BufferedReader inReader = new BufferedReader(new InputStreamReader(System.in));

		String input = inReader.readLine();
		Integer length = Integer.valueOf(input);

		int[] checkValue = new int[length + 1];
		checkValue[0] = 0;
		for (int i = 0; i < length; i++)
			checkValue[i + 1] = Integer.valueOf(inReader.readLine());

		for (int i = 0; i < checkValue.length - 1; i++)
		{

			if (Math.abs(checkValue[i] - checkValue[i + 1]) != 1)
			{
				System.out.println("F");
				return;
			}
		}

		System.out.println("T");
		return;
	}
}
0