結果

問題 No.627 ランダムウォークの軌跡
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 02:14:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-10-01 21:17:13
合計ジャッジ時間 7,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,196 KB
testcase_01 AC 134 ms
41,252 KB
testcase_02 AC 137 ms
41,340 KB
testcase_03 AC 133 ms
41,256 KB
testcase_04 AC 131 ms
41,236 KB
testcase_05 AC 136 ms
41,372 KB
testcase_06 AC 133 ms
40,988 KB
testcase_07 AC 133 ms
41,616 KB
testcase_08 AC 132 ms
41,012 KB
testcase_09 WA -
testcase_10 AC 137 ms
41,488 KB
testcase_11 AC 135 ms
41,232 KB
testcase_12 AC 135 ms
41,632 KB
testcase_13 AC 134 ms
41,332 KB
testcase_14 AC 136 ms
41,260 KB
testcase_15 AC 134 ms
41,240 KB
testcase_16 AC 135 ms
41,364 KB
testcase_17 AC 138 ms
41,048 KB
testcase_18 AC 123 ms
40,076 KB
testcase_19 AC 139 ms
41,304 KB
testcase_20 AC 142 ms
41,240 KB
testcase_21 AC 144 ms
41,552 KB
testcase_22 AC 141 ms
41,384 KB
testcase_23 WA -
testcase_24 AC 140 ms
41,424 KB
testcase_25 AC 136 ms
41,548 KB
testcase_26 AC 137 ms
41,044 KB
testcase_27 AC 141 ms
41,652 KB
testcase_28 AC 142 ms
41,336 KB
testcase_29 AC 142 ms
41,388 KB
testcase_30 AC 132 ms
41,072 KB
testcase_31 AC 131 ms
41,136 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ints = new int[n];
		for (int i=0; i<n; i++) {
			ints[i] = sc.nextInt();
		}
		if (ints[0]==0) {System.out.println("F");}
		else {
			boolean possible = true;
			for (int i=0; i<n-1; i++) {
				int temp = Math.abs(ints[i+1]-ints[i]);
				if (temp > 1) {possible = false;}
			}
			System.out.println(possible==true?"T":"F");
		}
	}
}
0