結果

問題 No.627 ランダムウォークの軌跡
ユーザー yamax3232yamax3232
提出日時 2018-03-15 08:41:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-12-15 05:00:44
合計ジャッジ時間 7,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,316 KB
testcase_01 WA -
testcase_02 AC 115 ms
54,292 KB
testcase_03 AC 122 ms
54,240 KB
testcase_04 AC 105 ms
53,032 KB
testcase_05 AC 116 ms
54,128 KB
testcase_06 AC 115 ms
54,212 KB
testcase_07 AC 104 ms
52,748 KB
testcase_08 AC 117 ms
54,012 KB
testcase_09 WA -
testcase_10 AC 120 ms
54,104 KB
testcase_11 AC 115 ms
53,580 KB
testcase_12 AC 122 ms
54,100 KB
testcase_13 WA -
testcase_14 AC 120 ms
54,132 KB
testcase_15 WA -
testcase_16 AC 125 ms
54,128 KB
testcase_17 AC 109 ms
53,064 KB
testcase_18 AC 112 ms
54,152 KB
testcase_19 WA -
testcase_20 AC 130 ms
54,160 KB
testcase_21 AC 122 ms
54,112 KB
testcase_22 AC 124 ms
53,972 KB
testcase_23 WA -
testcase_24 AC 126 ms
54,116 KB
testcase_25 AC 124 ms
54,276 KB
testcase_26 AC 126 ms
54,156 KB
testcase_27 WA -
testcase_28 AC 128 ms
54,004 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 124 ms
54,060 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		boolean isP=true;
		int n=kb.nextInt();
		int a[]=new int[n];
		for(int i=0;i<n;i++){
			a[i]=kb.nextInt();
		}

		for(int i=0;i<n;i++){
			if(i+1<n)
			if(a[i]-1>=a[i+1]&&a[i]+1<=a[i+1]){
				isP=false;
				break;
			}
		}
		
		if(isP){
			System.out.println("T");
		}else{
			System.out.println("F");
		}

	}
}
0