結果

問題 No.627 ランダムウォークの軌跡
ユーザー pochiMasahiropochiMasahiro
提出日時 2018-02-04 03:34:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-06-23 16:56:13
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,228 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,992 KB
testcase_03 AC 37 ms
52,544 KB
testcase_04 AC 36 ms
52,032 KB
testcase_05 AC 37 ms
52,564 KB
testcase_06 AC 37 ms
52,260 KB
testcase_07 AC 37 ms
52,088 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,488 KB
testcase_11 AC 37 ms
52,268 KB
testcase_12 AC 37 ms
52,244 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,724 KB
testcase_15 WA -
testcase_16 AC 37 ms
52,728 KB
testcase_17 AC 38 ms
52,888 KB
testcase_18 AC 37 ms
53,388 KB
testcase_19 WA -
testcase_20 AC 37 ms
52,196 KB
testcase_21 AC 37 ms
52,532 KB
testcase_22 AC 37 ms
52,680 KB
testcase_23 WA -
testcase_24 AC 38 ms
53,140 KB
testcase_25 AC 37 ms
53,236 KB
testcase_26 AC 37 ms
52,468 KB
testcase_27 WA -
testcase_28 AC 37 ms
53,008 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 35 ms
53,200 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

T = int(input())
x = [int(input()) for _ in range(T)]

for i, j in enumerate(x[:T-1]):
    if abs(x[i+1] - j) != 1:
        print("F")
else:
    print("T")
0