結果
問題 | No.627 ランダムウォークの軌跡 |
ユーザー |
![]() |
提出日時 | 2020-03-05 15:55:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 296 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 164,804 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 01:18:14 |
合計ジャッジ時間 | 2,700 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef pair<int, char> P; int main() { int t; cin >> t; int prev = 0; bool good = true; while (t--) { int x; cin >> x; if (abs(x - prev) != 1) good = false; prev = x; } cout << (good? 'T': 'F') << '\n'; return 0; }