結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,152 KB
testcase_01 AC 32 ms
51,748 KB
testcase_02 AC 32 ms
52,804 KB
testcase_03 AC 33 ms
52,956 KB
testcase_04 AC 32 ms
53,632 KB
testcase_05 AC 32 ms
51,984 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 32 ms
53,664 KB
testcase_08 AC 33 ms
53,224 KB
testcase_09 AC 32 ms
52,748 KB
testcase_10 AC 35 ms
52,600 KB
testcase_11 AC 36 ms
52,448 KB
testcase_12 AC 32 ms
52,188 KB
testcase_13 AC 35 ms
52,620 KB
testcase_14 AC 34 ms
52,920 KB
testcase_15 AC 33 ms
52,356 KB
testcase_16 AC 33 ms
53,032 KB
testcase_17 AC 31 ms
52,876 KB
testcase_18 AC 31 ms
52,880 KB
testcase_19 AC 32 ms
52,956 KB
testcase_20 AC 32 ms
53,444 KB
testcase_21 AC 33 ms
53,604 KB
testcase_22 AC 33 ms
52,684 KB
testcase_23 AC 32 ms
53,880 KB
testcase_24 AC 34 ms
52,628 KB
testcase_25 AC 34 ms
52,364 KB
testcase_26 AC 34 ms
52,668 KB
testcase_27 AC 35 ms
52,820 KB
testcase_28 AC 35 ms
54,060 KB
testcase_29 AC 36 ms
52,792 KB
testcase_30 AC 34 ms
52,408 KB
testcase_31 AC 33 ms
52,780 KB
testcase_32 AC 32 ms
52,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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