結果
| 問題 |
No.627 ランダムウォークの軌跡
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-13 23:19:02 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 142 ms / 2,000 ms |
| コード長 | 989 bytes |
| コンパイル時間 | 2,122 ms |
| コンパイル使用メモリ | 74,708 KB |
| 実行使用メモリ | 56,236 KB |
| 最終ジャッジ日時 | 2024-12-14 10:29:45 |
| 合計ジャッジ時間 | 7,997 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;
/**
* Built using CHelper plug-in
* Actual solution is at the top
*/
public class Main {
public static void main(String[] args) {
InputStream inputStream = System.in;
OutputStream outputStream = System.out;
Scanner in = new Scanner(inputStream);
PrintWriter out = new PrintWriter(outputStream);
Task solver = new Task();
solver.solve(1, in, out);
out.close();
}
static class Task {
public void solve(int testNumber, Scanner in, PrintWriter out) {
int n = in.nextInt();
int pos = 0;
String ans = "T";
for (int i = 0; i < n; i++) {
int next = in.nextInt();
if (Math.abs(pos - next) != 1) ans = "F";
pos = next;
}
out.println(ans);
}
}
}