結果

問題 No.627 ランダムウォークの軌跡
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 15:01:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 78,288 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-04-29 01:05:07
合計ジャッジ時間 7,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,320 KB
testcase_01 AC 113 ms
41,028 KB
testcase_02 AC 111 ms
41,240 KB
testcase_03 AC 104 ms
41,160 KB
testcase_04 AC 105 ms
41,248 KB
testcase_05 AC 113 ms
41,288 KB
testcase_06 AC 118 ms
41,672 KB
testcase_07 AC 104 ms
41,152 KB
testcase_08 AC 116 ms
41,024 KB
testcase_09 AC 105 ms
41,440 KB
testcase_10 AC 106 ms
41,116 KB
testcase_11 AC 105 ms
41,440 KB
testcase_12 AC 118 ms
41,172 KB
testcase_13 AC 115 ms
41,484 KB
testcase_14 AC 118 ms
41,576 KB
testcase_15 AC 110 ms
41,332 KB
testcase_16 AC 111 ms
41,040 KB
testcase_17 AC 124 ms
41,492 KB
testcase_18 AC 112 ms
41,424 KB
testcase_19 AC 110 ms
41,524 KB
testcase_20 AC 119 ms
41,672 KB
testcase_21 AC 118 ms
41,300 KB
testcase_22 AC 121 ms
41,660 KB
testcase_23 AC 104 ms
41,564 KB
testcase_24 AC 129 ms
41,472 KB
testcase_25 AC 122 ms
41,452 KB
testcase_26 AC 124 ms
41,624 KB
testcase_27 AC 116 ms
41,232 KB
testcase_28 AC 121 ms
41,072 KB
testcase_29 AC 111 ms
41,516 KB
testcase_30 AC 104 ms
41,252 KB
testcase_31 AC 109 ms
41,328 KB
testcase_32 AC 106 ms
41,448 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