結果

問題 No.627 ランダムウォークの軌跡
ユーザー tenkyu9tenkyu9
提出日時 2018-03-06 08:11:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 905 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 4,536 KB
最終ジャッジ日時 2023-10-12 22:22:19
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,348 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,348 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
4,352 KB
testcase_14 WA -
testcase_15 AC 1 ms
4,348 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
4,352 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
4,348 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
4,348 KB
testcase_28 WA -
testcase_29 AC 1 ms
4,356 KB
testcase_30 AC 1 ms
4,352 KB
testcase_31 WA -
testcase_32 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cmath>
#include<iomanip>
#include<cstring>
#include<map>
#include<vector>
#include<queue>
#include<utility>
using namespace std;
typedef long long int ll;

int main(){

  int t, x[100];
  cin >> t;
  for(int i=0; i<t; i++){
    cin >> x[i];
  }
    if(x[0]!=1){
      cout << "F" << endl;
      return 0;
    }
    if(x[0]!=-1){
      cout << "F" << endl;
      return 0;
    }
  for(int i=0; i<t-1; i++){
    if(abs(x[i]-x[i+1])!=1){
      cout << "F" << endl;
      return 0;
    }
  }

  cout << "T" << endl;

  return 0;
}
0