結果

問題 No.627 ランダムウォークの軌跡
ユーザー Lavender
提出日時 2019-09-06 10:30:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 167,620 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 15:59:44
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int t,c=0;
    cin>>t;
    vector<int> x(t+1,0);
    for(int i=1;i<=t;i++)cin>>x[i];
    for(int i=0;i<t;i++)if(x[i]+1==x[i+1]||x[i]-1==x[i+1])c++;
    if(c==t)cout<<"T"<<endl;
    else cout<<"F"<<endl;
    return 0;
}
0