結果
問題 | No.627 ランダムウォークの軌跡 |
ユーザー | dy |
提出日時 | 2018-01-15 15:49:51 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-24 02:36:28 |
合計ジャッジ時間 | 2,362 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 RE * 24 |
ソースコード
input_count = int(input()) current_place = 0 before_place = 0 answer = True for i in range(0, input_count): if i == 0 and int(input()) == 0: answer = False break elif i == 0: before_place = int(input()) continue else: current_place = int(input()) if current_place == before_place + 1 or current_place == before_place - 1: answer = True else: answer = False break before_place = current_place if answer: print("T") else: print("F")