結果

問題 No.1859 ><<<
ユーザー colognecologne
提出日時 2022-02-27 13:14:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 157 ms
42,528 KB
testcase_05 AC 144 ms
42,524 KB
testcase_06 AC 139 ms
42,652 KB
testcase_07 AC 136 ms
42,396 KB
testcase_08 AC 133 ms
42,652 KB
testcase_09 AC 136 ms
42,396 KB
testcase_10 AC 42 ms
15,376 KB
testcase_11 AC 92 ms
27,724 KB
testcase_12 AC 82 ms
25,712 KB
testcase_13 AC 59 ms
19,816 KB
testcase_14 AC 94 ms
29,464 KB
testcase_15 AC 122 ms
36,196 KB
testcase_16 AC 134 ms
38,400 KB
testcase_17 AC 121 ms
31,760 KB
testcase_18 AC 133 ms
37,920 KB
testcase_19 AC 102 ms
30,872 KB
testcase_20 AC 118 ms
36,440 KB
testcase_21 AC 131 ms
39,916 KB
testcase_22 AC 126 ms
40,596 KB
testcase_23 AC 118 ms
35,732 KB
testcase_24 AC 128 ms
39,500 KB
testcase_25 AC 130 ms
38,140 KB
testcase_26 AC 124 ms
36,700 KB
testcase_27 AC 131 ms
38,260 KB
testcase_28 AC 126 ms
39,364 KB
testcase_29 AC 128 ms
37,364 KB
testcase_30 AC 125 ms
36,008 KB
testcase_31 AC 121 ms
35,948 KB
testcase_32 AC 134 ms
39,772 KB
testcase_33 AC 122 ms
36,064 KB
testcase_34 AC 127 ms
37,664 KB
testcase_35 AC 136 ms
40,184 KB
testcase_36 AC 135 ms
39,920 KB
testcase_37 AC 123 ms
36,348 KB
testcase_38 AC 141 ms
42,508 KB
testcase_39 AC 138 ms
40,184 KB
testcase_40 AC 131 ms
39,368 KB
testcase_41 AC 136 ms
40,180 KB
testcase_42 AC 116 ms
37,348 KB
testcase_43 AC 124 ms
38,408 KB
testcase_44 AC 127 ms
38,408 KB
権限があれば一括ダウンロードができます

ソースコード

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