結果

問題 No.627 ランダムウォークの軌跡
ユーザー YamaKasaYamaKasa
提出日時 2018-05-08 20:38:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 75,788 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-06-28 02:30:45
合計ジャッジ時間 7,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,880 KB
testcase_01 AC 142 ms
54,100 KB
testcase_02 AC 134 ms
53,780 KB
testcase_03 AC 135 ms
54,120 KB
testcase_04 AC 136 ms
54,204 KB
testcase_05 AC 136 ms
54,216 KB
testcase_06 AC 138 ms
54,428 KB
testcase_07 AC 135 ms
53,852 KB
testcase_08 AC 138 ms
54,212 KB
testcase_09 AC 143 ms
54,448 KB
testcase_10 AC 138 ms
54,040 KB
testcase_11 AC 139 ms
53,996 KB
testcase_12 AC 142 ms
54,220 KB
testcase_13 AC 142 ms
54,096 KB
testcase_14 AC 140 ms
54,024 KB
testcase_15 AC 143 ms
54,320 KB
testcase_16 AC 138 ms
54,184 KB
testcase_17 AC 138 ms
54,124 KB
testcase_18 AC 141 ms
54,080 KB
testcase_19 AC 149 ms
54,280 KB
testcase_20 AC 142 ms
53,748 KB
testcase_21 AC 146 ms
53,836 KB
testcase_22 AC 141 ms
53,988 KB
testcase_23 AC 149 ms
54,384 KB
testcase_24 AC 142 ms
53,864 KB
testcase_25 AC 143 ms
54,228 KB
testcase_26 AC 140 ms
54,024 KB
testcase_27 AC 151 ms
54,676 KB
testcase_28 AC 143 ms
54,016 KB
testcase_29 AC 148 ms
54,216 KB
testcase_30 AC 141 ms
54,532 KB
testcase_31 AC 137 ms
53,880 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int T = scan.nextInt();
		int []X = new int[T];
		for(int i = 0; i < T; i++) {
			X[i] = scan.nextInt();
		}
		scan.close();
		if(X[0] == 0) {
			System.out.println("F");
			System.exit(0);
		}
		for(int i = 0; i < T - 1; i++) {
			int k = X[i + 1] - X[i];
			if(k * k != 1) {
				System.out.println("F");
				System.exit(0);
			}
		}
		System.out.println("T");
	}
}
0