結果
| 問題 | No.627 ランダムウォークの軌跡 |
| コンテスト | |
| ユーザー |
kohaku_kohaku
|
| 提出日時 | 2018-01-05 21:46:31 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 76 ms / 2,000 ms |
| コード長 | 660 bytes |
| 記録 | |
| コンパイル時間 | 2,251 ms |
| コンパイル使用メモリ | 82,228 KB |
| 実行使用メモリ | 41,944 KB |
| 最終ジャッジ日時 | 2026-05-29 08:08:20 |
| 合計ジャッジ時間 | 5,131 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
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;
}
}
kohaku_kohaku