結果
| 問題 | No.627 ランダムウォークの軌跡 | 
| コンテスト | |
| ユーザー |  keisuke6 | 
| 提出日時 | 2022-10-15 15:57:09 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 279 bytes | 
| コンパイル時間 | 2,144 ms | 
| コンパイル使用メモリ | 195,032 KB | 
| 最終ジャッジ日時 | 2025-02-08 06:35:44 | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 33 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N;
  cin>>N;
  vector<int> S(N+1);
  for(int i=1;i<=N;i++){
      cin>>S[i];
      if(abs(S[i]-S[i-1]) != 1){
          cout<<'F'<<endl;
          return 0;
      }
  }
  cout<<'T'<<endl;
}
            
            
            
        