結果

問題 No.627 ランダムウォークの軌跡
ユーザー tsunabittsunabit
提出日時 2018-07-15 14:45:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 76,804 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-11-06 09:47:01
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,004 KB
testcase_01 AC 141 ms
54,028 KB
testcase_02 AC 137 ms
54,208 KB
testcase_03 AC 135 ms
53,848 KB
testcase_04 AC 138 ms
53,816 KB
testcase_05 AC 139 ms
54,128 KB
testcase_06 AC 138 ms
53,816 KB
testcase_07 AC 138 ms
54,052 KB
testcase_08 AC 140 ms
54,188 KB
testcase_09 AC 136 ms
54,008 KB
testcase_10 AC 142 ms
54,156 KB
testcase_11 AC 139 ms
54,380 KB
testcase_12 AC 138 ms
54,092 KB
testcase_13 AC 140 ms
54,052 KB
testcase_14 AC 141 ms
54,104 KB
testcase_15 AC 142 ms
53,944 KB
testcase_16 AC 140 ms
54,036 KB
testcase_17 AC 139 ms
54,160 KB
testcase_18 AC 140 ms
54,244 KB
testcase_19 AC 144 ms
53,968 KB
testcase_20 AC 142 ms
54,504 KB
testcase_21 AC 141 ms
54,020 KB
testcase_22 AC 141 ms
54,240 KB
testcase_23 AC 142 ms
54,212 KB
testcase_24 AC 141 ms
54,256 KB
testcase_25 AC 143 ms
54,180 KB
testcase_26 AC 143 ms
54,168 KB
testcase_27 AC 144 ms
54,368 KB
testcase_28 AC 142 ms
53,972 KB
testcase_29 AC 141 ms
54,240 KB
testcase_30 AC 133 ms
54,064 KB
testcase_31 AC 133 ms
54,144 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No627 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		int[] x = new int[t];
		for(int i = 0 ; i < t; i++) {
			x[i] = sc.nextInt();
		}
		if(x[0] == 0) {
			System.out.println("F");
			return;
		}
		for(int i = 0; i < t - 1; i++) {
			if(Math.abs(x[i] - x[i + 1]) != 1) {
				System.out.println("F");
				return;
			}
		}
		System.out.println("T");
	}
}
0