結果

問題 No.1859 ><<<
ユーザー cologne
提出日時 2022-02-27 13:14:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 262 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 126,588 KB
最終ジャッジ日時 2024-07-05 12:39:51
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other TLE * 1 -- * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
0