結果
| 問題 |
No.627 ランダムウォークの軌跡
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-08 01:17:22 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 435 bytes |
| コンパイル時間 | 629 ms |
| コンパイル使用メモリ | 77,252 KB |
| 最終ジャッジ日時 | 2025-01-09 15:01:04 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
#include <iostream>
#include <cmath>
void solve() {
int t;
std::cin >> t;
int p = 0;
while (t--) {
int x;
std::cin >> x;
if (std::abs(p - x) != 1) {
std::cout << "F" << std::endl;
return;
}
p = x;
}
std::cout << "T" << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}