結果

問題 No.627 ランダムウォークの軌跡
ユーザー misk703misk703
提出日時 2018-05-10 12:45:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 78,232 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-06-28 02:56:40
合計ジャッジ時間 8,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,744 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 130 ms
40,836 KB
testcase_03 AC 131 ms
41,176 KB
testcase_04 AC 129 ms
41,172 KB
testcase_05 AC 130 ms
41,204 KB
testcase_06 AC 128 ms
41,124 KB
testcase_07 AC 129 ms
40,976 KB
testcase_08 AC 133 ms
41,100 KB
testcase_09 AC 117 ms
41,516 KB
testcase_10 AC 137 ms
41,204 KB
testcase_11 AC 132 ms
41,428 KB
testcase_12 AC 127 ms
40,812 KB
testcase_13 AC 117 ms
39,856 KB
testcase_14 AC 139 ms
41,272 KB
testcase_15 AC 132 ms
41,136 KB
testcase_16 AC 126 ms
40,364 KB
testcase_17 AC 125 ms
40,284 KB
testcase_18 AC 133 ms
41,168 KB
testcase_19 AC 126 ms
41,208 KB
testcase_20 AC 134 ms
41,196 KB
testcase_21 AC 136 ms
41,240 KB
testcase_22 AC 137 ms
41,180 KB
testcase_23 AC 131 ms
41,280 KB
testcase_24 AC 140 ms
41,492 KB
testcase_25 AC 136 ms
41,196 KB
testcase_26 AC 132 ms
41,216 KB
testcase_27 AC 117 ms
40,316 KB
testcase_28 AC 142 ms
41,292 KB
testcase_29 AC 133 ms
41,328 KB
testcase_30 AC 132 ms
41,260 KB
testcase_31 AC 119 ms
39,920 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Rumdum {

    public static void main(String[] args) {
	ArrayList<Integer> list = new ArrayList<>();
	Scanner scanner = new Scanner(System.in);

	int T = scanner.nextInt();
	int buff = scanner.nextInt();
	if(buff == 0){
	    System.out.println("F");
	    return;
	}
	for(int i=0;i<T-1;i++){
	    int t = scanner.nextInt();
	    if(buff+1 == t || buff-1 == t){
		buff = t;
	    }else{
		System.out.println("F");
		return;
	    }
	}
	System.out.println("T");
	return;

    }

}
0