結果

問題 No.627 ランダムウォークの軌跡
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:45:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 4,620 ms
コンパイル使用メモリ 80,548 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-06-09 10:37:28
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,180 KB
testcase_01 AC 136 ms
41,440 KB
testcase_02 AC 135 ms
41,172 KB
testcase_03 AC 138 ms
41,300 KB
testcase_04 AC 134 ms
41,044 KB
testcase_05 AC 134 ms
41,320 KB
testcase_06 AC 135 ms
41,084 KB
testcase_07 AC 136 ms
40,852 KB
testcase_08 AC 134 ms
40,900 KB
testcase_09 AC 136 ms
41,156 KB
testcase_10 AC 137 ms
41,264 KB
testcase_11 AC 138 ms
41,272 KB
testcase_12 AC 138 ms
41,024 KB
testcase_13 AC 139 ms
41,172 KB
testcase_14 AC 140 ms
41,216 KB
testcase_15 AC 136 ms
41,468 KB
testcase_16 AC 140 ms
41,268 KB
testcase_17 AC 137 ms
41,292 KB
testcase_18 AC 138 ms
41,184 KB
testcase_19 AC 142 ms
41,316 KB
testcase_20 AC 138 ms
41,204 KB
testcase_21 AC 140 ms
41,128 KB
testcase_22 AC 139 ms
41,556 KB
testcase_23 AC 141 ms
41,488 KB
testcase_24 AC 136 ms
41,700 KB
testcase_25 AC 140 ms
41,372 KB
testcase_26 AC 142 ms
41,188 KB
testcase_27 AC 141 ms
41,124 KB
testcase_28 AC 140 ms
41,164 KB
testcase_29 AC 145 ms
41,508 KB
testcase_30 WA -
testcase_31 AC 132 ms
41,036 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
				}
			}
		}
		s.close();
		if(ft){
			System.out.println("T");
		}else{
			System.out.println("F");
		}
	}

}
0