結果

問題 No.627 ランダムウォークの軌跡
ユーザー otsunekootsuneko
提出日時 2021-05-07 17:22:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 1,302 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-09-15 05:47:13
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,492 KB
testcase_01 AC 37 ms
52,148 KB
testcase_02 AC 37 ms
52,028 KB
testcase_03 AC 38 ms
52,572 KB
testcase_04 AC 37 ms
52,116 KB
testcase_05 AC 38 ms
52,428 KB
testcase_06 AC 38 ms
52,240 KB
testcase_07 AC 38 ms
53,580 KB
testcase_08 AC 37 ms
52,360 KB
testcase_09 AC 37 ms
52,708 KB
testcase_10 AC 39 ms
53,648 KB
testcase_11 AC 38 ms
53,556 KB
testcase_12 AC 37 ms
52,876 KB
testcase_13 AC 38 ms
53,228 KB
testcase_14 AC 38 ms
52,484 KB
testcase_15 AC 38 ms
52,412 KB
testcase_16 AC 38 ms
52,824 KB
testcase_17 AC 37 ms
52,496 KB
testcase_18 AC 38 ms
52,148 KB
testcase_19 AC 37 ms
52,360 KB
testcase_20 AC 38 ms
52,640 KB
testcase_21 AC 38 ms
52,312 KB
testcase_22 AC 38 ms
52,460 KB
testcase_23 AC 37 ms
52,824 KB
testcase_24 AC 38 ms
52,176 KB
testcase_25 AC 38 ms
52,856 KB
testcase_26 AC 39 ms
52,008 KB
testcase_27 AC 39 ms
53,968 KB
testcase_28 AC 38 ms
52,700 KB
testcase_29 AC 38 ms
52,716 KB
testcase_30 AC 38 ms
52,508 KB
testcase_31 AC 37 ms
52,964 KB
testcase_32 AC 37 ms
52,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
X = [int(input()) for _ in range(T)]
prev = 0
for x in X:
    if x+1 != prev and x-1 != prev:
        print("F")
        break
    else:
        prev = x
else:
    print("T")
0