結果

問題 No.627 ランダムウォークの軌跡
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-27 13:48:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-07-06 09:24:36
合計ジャッジ時間 2,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,080 KB
testcase_01 AC 31 ms
52,212 KB
testcase_02 AC 31 ms
52,284 KB
testcase_03 AC 32 ms
52,252 KB
testcase_04 AC 32 ms
52,212 KB
testcase_05 AC 31 ms
51,964 KB
testcase_06 AC 31 ms
52,620 KB
testcase_07 AC 31 ms
53,120 KB
testcase_08 AC 31 ms
52,596 KB
testcase_09 AC 33 ms
53,212 KB
testcase_10 AC 32 ms
52,636 KB
testcase_11 AC 31 ms
51,880 KB
testcase_12 AC 31 ms
52,004 KB
testcase_13 AC 31 ms
52,616 KB
testcase_14 AC 31 ms
53,144 KB
testcase_15 AC 32 ms
53,140 KB
testcase_16 AC 32 ms
53,128 KB
testcase_17 AC 30 ms
52,620 KB
testcase_18 AC 31 ms
52,964 KB
testcase_19 AC 31 ms
53,068 KB
testcase_20 AC 34 ms
52,948 KB
testcase_21 AC 34 ms
53,972 KB
testcase_22 AC 31 ms
52,736 KB
testcase_23 AC 31 ms
52,404 KB
testcase_24 AC 31 ms
52,832 KB
testcase_25 AC 31 ms
52,488 KB
testcase_26 AC 31 ms
52,616 KB
testcase_27 AC 33 ms
52,876 KB
testcase_28 AC 32 ms
53,416 KB
testcase_29 AC 33 ms
53,620 KB
testcase_30 WA -
testcase_31 AC 33 ms
52,480 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = [int(input()) for _ in range(n)]
if n == 1:
    print("T")
else:
    for i in range(n-1):
        if abs(X[i] - X[i+1]) != 1:
            print("F")
            exit()
    print("T")
0