結果

問題 No.627 ランダムウォークの軌跡
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-01-14 10:45:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 1,392 ms
コンパイル使用メモリ 86,420 KB
実行使用メモリ 71,364 KB
最終ジャッジ日時 2023-08-15 16:21:29
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,168 KB
testcase_01 AC 64 ms
71,040 KB
testcase_02 AC 64 ms
71,156 KB
testcase_03 AC 62 ms
71,132 KB
testcase_04 AC 63 ms
71,080 KB
testcase_05 AC 61 ms
70,852 KB
testcase_06 AC 60 ms
71,216 KB
testcase_07 AC 62 ms
71,224 KB
testcase_08 AC 61 ms
71,140 KB
testcase_09 WA -
testcase_10 AC 65 ms
71,124 KB
testcase_11 AC 66 ms
71,284 KB
testcase_12 AC 62 ms
71,276 KB
testcase_13 AC 61 ms
71,164 KB
testcase_14 AC 62 ms
71,244 KB
testcase_15 AC 62 ms
71,136 KB
testcase_16 AC 61 ms
71,196 KB
testcase_17 AC 60 ms
70,956 KB
testcase_18 AC 61 ms
71,200 KB
testcase_19 AC 65 ms
71,084 KB
testcase_20 AC 62 ms
71,136 KB
testcase_21 AC 62 ms
70,796 KB
testcase_22 AC 62 ms
71,364 KB
testcase_23 WA -
testcase_24 AC 68 ms
71,192 KB
testcase_25 AC 61 ms
71,276 KB
testcase_26 AC 65 ms
71,160 KB
testcase_27 AC 62 ms
71,152 KB
testcase_28 AC 62 ms
71,156 KB
testcase_29 AC 62 ms
71,220 KB
testcase_30 WA -
testcase_31 AC 61 ms
71,076 KB
testcase_32 AC 59 ms
71,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
x=0
for i in range(n):
	t=int(input())
	if (x-t)**2>1:
		print('F')
		break
	x=t
else:
	print('T')
0