結果

問題 No.1859 ><<<
ユーザー ripityripity
提出日時 2022-02-28 19:38:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,408 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,888 KB
最終ジャッジ日時 2024-07-06 22:45:12
合計ジャッジ時間 47,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 1,386 ms
42,640 KB
testcase_05 AC 1,371 ms
42,640 KB
testcase_06 AC 1,363 ms
42,644 KB
testcase_07 AC 1,408 ms
42,644 KB
testcase_08 AC 1,381 ms
42,640 KB
testcase_09 AC 1,373 ms
42,644 KB
testcase_10 AC 83 ms
15,484 KB
testcase_11 AC 516 ms
27,964 KB
testcase_12 AC 416 ms
25,828 KB
testcase_13 AC 186 ms
20,048 KB
testcase_14 AC 586 ms
29,452 KB
testcase_15 AC 1,025 ms
36,180 KB
testcase_16 AC 1,196 ms
38,384 KB
testcase_17 AC 725 ms
31,748 KB
testcase_18 AC 1,144 ms
38,036 KB
testcase_19 AC 707 ms
30,848 KB
testcase_20 AC 1,053 ms
36,524 KB
testcase_21 AC 1,299 ms
40,040 KB
testcase_22 AC 1,220 ms
40,840 KB
testcase_23 AC 981 ms
35,840 KB
testcase_24 AC 1,276 ms
39,640 KB
testcase_25 AC 1,083 ms
38,376 KB
testcase_26 AC 1,051 ms
36,796 KB
testcase_27 AC 1,170 ms
38,292 KB
testcase_28 AC 1,158 ms
39,228 KB
testcase_29 AC 1,085 ms
37,472 KB
testcase_30 AC 999 ms
36,128 KB
testcase_31 AC 1,013 ms
36,056 KB
testcase_32 AC 1,327 ms
39,892 KB
testcase_33 AC 957 ms
36,052 KB
testcase_34 AC 1,131 ms
37,772 KB
testcase_35 AC 1,316 ms
40,164 KB
testcase_36 AC 1,369 ms
40,036 KB
testcase_37 AC 1,031 ms
36,596 KB
testcase_38 AC 1,265 ms
42,888 KB
testcase_39 AC 1,318 ms
40,172 KB
testcase_40 AC 1,266 ms
39,352 KB
testcase_41 AC 1,324 ms
40,172 KB
testcase_42 AC 999 ms
37,572 KB
testcase_43 AC 1,192 ms
38,644 KB
testcase_44 AC 1,229 ms
38,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
s = input()
t = ''
a.append(a[0])
for i in range(n):
    t += '>' if a[i] > a[i+1] else '<'
t += t
print( t.find(s) )
0