結果

問題 No.627 ランダムウォークの軌跡
ユーザー jimanojimano
提出日時 2018-01-23 23:06:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 3,685 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 50,340 KB
最終ジャッジ日時 2024-06-07 19:20:02
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,332 KB
testcase_01 AC 56 ms
49,880 KB
testcase_02 AC 56 ms
49,924 KB
testcase_03 AC 55 ms
50,172 KB
testcase_04 AC 55 ms
50,312 KB
testcase_05 AC 57 ms
50,084 KB
testcase_06 AC 55 ms
49,908 KB
testcase_07 AC 55 ms
50,236 KB
testcase_08 AC 55 ms
50,044 KB
testcase_09 AC 55 ms
49,792 KB
testcase_10 AC 55 ms
50,016 KB
testcase_11 AC 55 ms
50,304 KB
testcase_12 AC 55 ms
50,320 KB
testcase_13 AC 56 ms
50,020 KB
testcase_14 AC 56 ms
50,312 KB
testcase_15 AC 56 ms
50,340 KB
testcase_16 AC 57 ms
50,280 KB
testcase_17 AC 56 ms
50,316 KB
testcase_18 AC 54 ms
50,028 KB
testcase_19 AC 56 ms
50,020 KB
testcase_20 AC 56 ms
50,196 KB
testcase_21 AC 56 ms
49,916 KB
testcase_22 AC 56 ms
50,140 KB
testcase_23 AC 56 ms
50,244 KB
testcase_24 AC 57 ms
50,108 KB
testcase_25 AC 56 ms
50,048 KB
testcase_26 AC 56 ms
49,892 KB
testcase_27 AC 57 ms
50,132 KB
testcase_28 AC 56 ms
50,060 KB
testcase_29 AC 56 ms
49,900 KB
testcase_30 AC 56 ms
50,256 KB
testcase_31 AC 56 ms
50,320 KB
testcase_32 AC 56 ms
50,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

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

public class No0627 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int T = Integer.parseInt(br.readLine());
			int[] x = new int[T + 1];
			x[0] = 0;

			for (int i = 1; i < T + 1; i++) {
				x[i] = Integer.parseInt(br.readLine());
			}
			for (int i = 0; i < T ; i++) {
				if (Math.abs(x[i] - x[i + 1]) != 1) {
					System.out.println("F");
					return;
				}
			}
			System.out.println("T");
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}
0