結果
| 問題 | No.1859 ><<< |
| ユーザー |
|
| 提出日時 | 2022-02-27 13:14:32 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 262 bytes |
| 記録 | |
| コンパイル時間 | 355 ms |
| コンパイル使用メモリ | 96,612 KB |
| 実行使用メモリ | 141,568 KB |
| 最終ジャッジ日時 | 2026-08-07 21:58:48 |
| 合計ジャッジ時間 | 5,506 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | TLE * 1 -- * 40 |
ソースコード
def main():
N = int(input())
*A, = map(int, input().split())
s = input()
t = ''.join(['<' if A[i] < A[i+1] else '>' for i in range(N-1)])
t = t + ('<' if A[-1] < A[0] else '>') + t
print(t.find(s))
if __name__ == '__main__':
main()