結果
問題 |
No.627 ランダムウォークの軌跡
|
ユーザー |
|
提出日時 | 2018-01-06 09:51:26 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 461 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-12-23 08:33:12 |
合計ジャッジ時間 | 1,560 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 WA * 2 RE * 8 |
ソースコード
#yuki_627 t=int(raw_input()) x=[] for i in xrange(t): x.append(int(raw_input())) for i in xrange(1,t): if abs(x[i-1]-x[i])!=1: print 'F' sys.exit() print 'T'