結果
問題 | No.627 ランダムウォークの軌跡 |
ユーザー |
|
提出日時 | 2018-01-06 09:56:03 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 176 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 7,080 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-23 08:33:44 |
合計ジャッジ時間 | 1,442 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 WA * 2 |
ソースコード
#yuki_627 import sys 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'