結果

問題 No.627 ランダムウォークの軌跡
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:48:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-09 10:37:55
合計ジャッジ時間 9,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,984 KB
testcase_01 AC 133 ms
53,876 KB
testcase_02 AC 134 ms
53,600 KB
testcase_03 AC 123 ms
53,984 KB
testcase_04 AC 135 ms
54,112 KB
testcase_05 AC 134 ms
54,204 KB
testcase_06 AC 136 ms
53,860 KB
testcase_07 AC 137 ms
53,676 KB
testcase_08 AC 136 ms
53,888 KB
testcase_09 AC 126 ms
54,108 KB
testcase_10 AC 131 ms
54,284 KB
testcase_11 AC 130 ms
53,868 KB
testcase_12 AC 130 ms
53,760 KB
testcase_13 AC 133 ms
54,308 KB
testcase_14 AC 128 ms
53,940 KB
testcase_15 AC 130 ms
54,012 KB
testcase_16 AC 129 ms
54,036 KB
testcase_17 AC 140 ms
53,784 KB
testcase_18 AC 133 ms
53,840 KB
testcase_19 AC 135 ms
53,800 KB
testcase_20 AC 137 ms
53,712 KB
testcase_21 AC 126 ms
53,976 KB
testcase_22 AC 132 ms
54,068 KB
testcase_23 AC 135 ms
54,160 KB
testcase_24 AC 133 ms
54,280 KB
testcase_25 AC 126 ms
53,772 KB
testcase_26 AC 131 ms
54,132 KB
testcase_27 AC 129 ms
53,804 KB
testcase_28 AC 143 ms
54,040 KB
testcase_29 AC 141 ms
53,884 KB
testcase_30 AC 135 ms
53,920 KB
testcase_31 AC 126 ms
53,812 KB
testcase_32 AC 131 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;

public class RandomWalknokiseki {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int T = s.nextInt();
		Boolean ft = true;
		int[] X = new int[T];
		for(int i = 0;i < T;i++){
			X[i] = s.nextInt();
			if(i > 0){
				if(Math.abs(X[i] - X[i-1]) != 1){
					ft = false;
				}
			}else if(i == 0){
				if(Math.abs(X[i]) != 1){
					ft = false;
				}
			}
		}
		s.close();
		if(ft){
			System.out.println("T");
		}else{
			System.out.println("F");
		}
	}

}
0