結果

問題 No.627 ランダムウォークの軌跡
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-01-05 21:46:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 78,472 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-12-23 06:30:41
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        int [] x = new int [t];
        for(int i = 0; i < t; i++) {
            x[i] = sc.nextInt();
        }
        if(judge(x)) {
            System.out.println("T");
        } else {
            System.out.println("F");
        }
    }
    
    static boolean judge(int [] x) {
        int now = 0;
        for(int i = 0; i < x.length; i++) {
            if(Math.abs(now - x[i]) != 1) {
                return false;
            }
            now = x[i];
        }
        return true;
    }
}
0