結果
| 問題 | No.1859 ><<< |
| ユーザー |
|
| 提出日時 | 2022-02-27 13:14:32 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 262 bytes |
| 記録 | |
| コンパイル時間 | 210 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 61,804 KB |
| 最終ジャッジ日時 | 2026-03-26 21:27:45 |
| 合計ジャッジ時間 | 4,194 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_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()