結果
| 問題 | No.627 ランダムウォークの軌跡 |
| コンテスト | |
| ユーザー |
FVRChan
|
| 提出日時 | 2018-05-03 09:29:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 748 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-16 08:13:45 |
| 合計ジャッジ時間 | 10,439 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
t=int(input())
X=[int(input()) for i in range(t)]
now=0
for x in X:
if abs(abs(now)-abs(x))!=1:
print("F")
exit()
else:
now=x
print("T")
FVRChan