結果

問題 No.627 ランダムウォークの軌跡
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 17:51:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-26 22:27:46
合計ジャッジ時間 7,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,976 KB
testcase_01 AC 125 ms
53,936 KB
testcase_02 AC 127 ms
53,996 KB
testcase_03 AC 131 ms
54,168 KB
testcase_04 AC 115 ms
52,724 KB
testcase_05 AC 132 ms
54,312 KB
testcase_06 AC 135 ms
54,220 KB
testcase_07 AC 129 ms
54,036 KB
testcase_08 AC 128 ms
54,180 KB
testcase_09 AC 127 ms
54,332 KB
testcase_10 AC 130 ms
54,092 KB
testcase_11 AC 133 ms
54,228 KB
testcase_12 AC 120 ms
52,728 KB
testcase_13 AC 134 ms
54,300 KB
testcase_14 AC 133 ms
54,156 KB
testcase_15 AC 135 ms
54,532 KB
testcase_16 AC 135 ms
54,200 KB
testcase_17 AC 131 ms
54,168 KB
testcase_18 AC 124 ms
53,212 KB
testcase_19 AC 133 ms
54,128 KB
testcase_20 AC 135 ms
54,072 KB
testcase_21 AC 133 ms
54,376 KB
testcase_22 AC 134 ms
54,188 KB
testcase_23 AC 135 ms
54,252 KB
testcase_24 AC 128 ms
53,700 KB
testcase_25 AC 139 ms
54,120 KB
testcase_26 AC 135 ms
54,404 KB
testcase_27 AC 133 ms
54,148 KB
testcase_28 AC 136 ms
54,280 KB
testcase_29 AC 135 ms
54,016 KB
testcase_30 AC 125 ms
54,264 KB
testcase_31 AC 128 ms
54,168 KB
testcase_32 AC 125 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no627{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		String[] tf= {"T","F"};
		int t=stdIn.nextInt();
		int[] x=new int[t];
		for(int i=0;i<t;i++) x[i]=stdIn.nextInt();
		int p=0;
		int xorf=0;
		for(int i=0;i<t;i++) {
			if(!(p==x[i]+1||p==x[i]-1)) xorf=1;
			p=x[i];
		}
		System.out.println(tf[xorf]);
	}
}
0