結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,720 KB
testcase_01 AC 116 ms
54,036 KB
testcase_02 AC 117 ms
53,732 KB
testcase_03 AC 116 ms
54,104 KB
testcase_04 AC 119 ms
53,900 KB
testcase_05 AC 112 ms
53,852 KB
testcase_06 AC 114 ms
53,836 KB
testcase_07 AC 118 ms
53,900 KB
testcase_08 AC 129 ms
53,952 KB
testcase_09 AC 132 ms
53,952 KB
testcase_10 AC 106 ms
52,636 KB
testcase_11 AC 122 ms
53,840 KB
testcase_12 AC 102 ms
52,572 KB
testcase_13 AC 107 ms
54,060 KB
testcase_14 AC 124 ms
54,140 KB
testcase_15 AC 132 ms
54,088 KB
testcase_16 AC 127 ms
53,832 KB
testcase_17 AC 118 ms
53,968 KB
testcase_18 AC 106 ms
53,084 KB
testcase_19 AC 126 ms
54,200 KB
testcase_20 AC 120 ms
53,912 KB
testcase_21 AC 121 ms
54,068 KB
testcase_22 AC 130 ms
54,164 KB
testcase_23 AC 117 ms
53,984 KB
testcase_24 AC 117 ms
54,092 KB
testcase_25 AC 120 ms
53,848 KB
testcase_26 AC 121 ms
54,172 KB
testcase_27 AC 121 ms
53,988 KB
testcase_28 AC 117 ms
53,904 KB
testcase_29 AC 125 ms
53,984 KB
testcase_30 AC 113 ms
54,136 KB
testcase_31 AC 115 ms
54,016 KB
testcase_32 AC 113 ms
53,824 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