結果

問題 No.1859 ><<<
ユーザー ShirotsumeShirotsume
提出日時 2021-11-26 12:45:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-07-04 15:59:07
合計ジャッジ時間 8,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 188 ms
42,420 KB
testcase_05 AC 191 ms
42,416 KB
testcase_06 AC 192 ms
42,676 KB
testcase_07 AC 186 ms
42,416 KB
testcase_08 AC 185 ms
42,548 KB
testcase_09 AC 188 ms
42,676 KB
testcase_10 AC 53 ms
15,772 KB
testcase_11 AC 126 ms
27,988 KB
testcase_12 AC 114 ms
25,596 KB
testcase_13 AC 77 ms
19,688 KB
testcase_14 AC 129 ms
29,472 KB
testcase_15 AC 165 ms
36,224 KB
testcase_16 AC 183 ms
40,208 KB
testcase_17 AC 138 ms
31,516 KB
testcase_18 AC 180 ms
37,936 KB
testcase_19 AC 135 ms
30,880 KB
testcase_20 AC 162 ms
36,412 KB
testcase_21 AC 183 ms
42,116 KB
testcase_22 AC 179 ms
40,272 KB
testcase_23 AC 161 ms
35,612 KB
testcase_24 AC 184 ms
39,580 KB
testcase_25 AC 178 ms
38,152 KB
testcase_26 AC 166 ms
36,824 KB
testcase_27 AC 175 ms
38,152 KB
testcase_28 AC 172 ms
37,592 KB
testcase_29 AC 175 ms
37,112 KB
testcase_30 AC 169 ms
35,888 KB
testcase_31 AC 173 ms
35,952 KB
testcase_32 AC 187 ms
39,924 KB
testcase_33 AC 166 ms
35,828 KB
testcase_34 AC 178 ms
37,800 KB
testcase_35 AC 203 ms
42,248 KB
testcase_36 AC 194 ms
42,116 KB
testcase_37 AC 168 ms
38,288 KB
testcase_38 AC 197 ms
42,400 KB
testcase_39 AC 197 ms
42,252 KB
testcase_40 AC 181 ms
39,252 KB
testcase_41 AC 189 ms
42,504 KB
testcase_42 AC 162 ms
35,556 KB
testcase_43 AC 174 ms
40,216 KB
testcase_44 AC 172 ms
38,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, a, s):
    a = a + a
    t = []
    for i in range(2 * n - 1):
        if a[i] < a[i + 1]:
            t.append('<')
        else:
            t.append('>')
    t = ''.join(t)
    return t.find(s)

n = int(input())
a = list(map(int,input().split()))
s = input()

print(solve(n, a, s))
0