結果

問題 No.627 ランダムウォークの軌跡
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 15:01:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-17 23:00:04
合計ジャッジ時間 8,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,052 KB
testcase_01 AC 121 ms
41,308 KB
testcase_02 AC 120 ms
41,040 KB
testcase_03 AC 116 ms
41,060 KB
testcase_04 AC 123 ms
41,492 KB
testcase_05 AC 122 ms
41,312 KB
testcase_06 AC 121 ms
41,072 KB
testcase_07 AC 118 ms
41,192 KB
testcase_08 AC 107 ms
39,824 KB
testcase_09 AC 116 ms
41,044 KB
testcase_10 AC 122 ms
41,452 KB
testcase_11 AC 118 ms
41,200 KB
testcase_12 AC 127 ms
41,372 KB
testcase_13 AC 117 ms
40,940 KB
testcase_14 AC 125 ms
41,416 KB
testcase_15 AC 126 ms
41,304 KB
testcase_16 AC 132 ms
41,084 KB
testcase_17 AC 127 ms
41,692 KB
testcase_18 AC 133 ms
41,500 KB
testcase_19 AC 126 ms
41,360 KB
testcase_20 AC 128 ms
41,192 KB
testcase_21 AC 132 ms
41,288 KB
testcase_22 AC 130 ms
41,216 KB
testcase_23 AC 128 ms
41,080 KB
testcase_24 AC 126 ms
41,324 KB
testcase_25 AC 129 ms
41,328 KB
testcase_26 AC 129 ms
41,180 KB
testcase_27 AC 124 ms
41,112 KB
testcase_28 AC 125 ms
41,272 KB
testcase_29 AC 120 ms
41,552 KB
testcase_30 AC 122 ms
41,480 KB
testcase_31 AC 119 ms
41,344 KB
testcase_32 AC 108 ms
39,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int T = sc.nextInt();
		List<Integer> list = new ArrayList<Integer>();
		list.add(0);
		for(int i = 1; i <= T; i++) {
			list.add(sc.nextInt());
			if(Math.abs(list.get(i-1) - list.get(i)) == 1) {
				
			}
			else {
				System.out.println("F");
				return;
			}
		}
		System.out.println("T");
	}
}
0