結果

問題 No.627 ランダムウォークの軌跡
ユーザー yamax3232yamax3232
提出日時 2018-03-19 13:23:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 76,876 KB
実行使用メモリ 56,072 KB
最終ジャッジ日時 2024-06-10 02:51:51
合計ジャッジ時間 7,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,820 KB
testcase_01 WA -
testcase_02 AC 106 ms
53,188 KB
testcase_03 AC 110 ms
54,024 KB
testcase_04 AC 117 ms
54,320 KB
testcase_05 AC 117 ms
52,944 KB
testcase_06 AC 104 ms
52,776 KB
testcase_07 AC 105 ms
52,984 KB
testcase_08 AC 117 ms
54,240 KB
testcase_09 WA -
testcase_10 AC 103 ms
52,900 KB
testcase_11 AC 113 ms
53,932 KB
testcase_12 AC 117 ms
53,740 KB
testcase_13 WA -
testcase_14 AC 123 ms
53,956 KB
testcase_15 WA -
testcase_16 AC 116 ms
53,664 KB
testcase_17 AC 120 ms
54,168 KB
testcase_18 AC 118 ms
54,228 KB
testcase_19 WA -
testcase_20 AC 125 ms
54,196 KB
testcase_21 AC 126 ms
53,932 KB
testcase_22 AC 120 ms
54,080 KB
testcase_23 WA -
testcase_24 AC 119 ms
54,432 KB
testcase_25 AC 120 ms
53,964 KB
testcase_26 AC 116 ms
53,184 KB
testcase_27 WA -
testcase_28 AC 122 ms
54,084 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 111 ms
54,020 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main2 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int  n =kb.nextInt();
		int[] a=new int[n];
		boolean b=true;
		for(int i=0;i<a.length;i++){
			a[i]=kb.nextInt();
		}
		for(int i=0;i<a.length;i++){
			if(i+1<a.length){
				if(a[i+1]!=a[i]+1&&a[i+1]!=a[i]-1){
					System.out.println(i);
					b=false;
				}
			}
		}
		if(!b){
			System.out.println("F");
		}else{
			System.out.println("T");
		}


	}
}
0