結果

問題 No.1859 ><<<
ユーザー cologne
提出日時 2022-02-27 13:14:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,652 KB
最終ジャッジ日時 2024-07-05 12:40:12
合計ジャッジ時間 7,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

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