結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,144 KB
testcase_01 WA -
testcase_02 AC 105 ms
40,068 KB
testcase_03 AC 108 ms
40,300 KB
testcase_04 AC 113 ms
41,024 KB
testcase_05 AC 112 ms
40,152 KB
testcase_06 AC 110 ms
40,128 KB
testcase_07 AC 120 ms
41,292 KB
testcase_08 AC 115 ms
40,920 KB
testcase_09 WA -
testcase_10 AC 115 ms
40,208 KB
testcase_11 AC 108 ms
40,128 KB
testcase_12 AC 108 ms
40,252 KB
testcase_13 WA -
testcase_14 AC 122 ms
41,144 KB
testcase_15 WA -
testcase_16 AC 116 ms
40,748 KB
testcase_17 AC 111 ms
40,164 KB
testcase_18 AC 126 ms
41,248 KB
testcase_19 WA -
testcase_20 AC 131 ms
41,184 KB
testcase_21 AC 122 ms
41,116 KB
testcase_22 AC 123 ms
41,092 KB
testcase_23 WA -
testcase_24 AC 126 ms
41,340 KB
testcase_25 AC 123 ms
41,280 KB
testcase_26 AC 129 ms
40,984 KB
testcase_27 WA -
testcase_28 AC 128 ms
41,616 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 110 ms
40,128 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