結果

問題 No.1859 ><<<
ユーザー ripityripity
提出日時 2022-03-09 20:25:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,633 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,884 KB
最終ジャッジ日時 2024-09-13 20:32:45
合計ジャッジ時間 55,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 1,633 ms
42,516 KB
testcase_05 AC 1,616 ms
42,640 KB
testcase_06 AC 1,608 ms
42,488 KB
testcase_07 AC 1,611 ms
42,644 KB
testcase_08 AC 1,612 ms
42,548 KB
testcase_09 AC 1,614 ms
42,516 KB
testcase_10 AC 100 ms
15,488 KB
testcase_11 AC 601 ms
27,968 KB
testcase_12 AC 492 ms
25,700 KB
testcase_13 AC 226 ms
19,796 KB
testcase_14 AC 690 ms
29,320 KB
testcase_15 AC 1,180 ms
36,048 KB
testcase_16 AC 1,388 ms
38,388 KB
testcase_17 AC 854 ms
31,872 KB
testcase_18 AC 1,325 ms
38,032 KB
testcase_19 AC 803 ms
30,852 KB
testcase_20 AC 1,205 ms
36,524 KB
testcase_21 AC 1,524 ms
39,912 KB
testcase_22 AC 1,408 ms
40,720 KB
testcase_23 AC 1,147 ms
35,712 KB
testcase_24 AC 1,472 ms
39,620 KB
testcase_25 AC 1,243 ms
38,124 KB
testcase_26 AC 1,228 ms
36,668 KB
testcase_27 AC 1,369 ms
38,380 KB
testcase_28 AC 1,315 ms
39,224 KB
testcase_29 AC 1,276 ms
37,216 KB
testcase_30 AC 1,178 ms
36,120 KB
testcase_31 AC 1,170 ms
35,924 KB
testcase_32 AC 1,535 ms
39,760 KB
testcase_33 AC 1,104 ms
36,052 KB
testcase_34 AC 1,324 ms
37,776 KB
testcase_35 AC 1,545 ms
40,172 KB
testcase_36 AC 1,554 ms
40,032 KB
testcase_37 AC 1,206 ms
36,340 KB
testcase_38 AC 1,483 ms
42,884 KB
testcase_39 AC 1,544 ms
40,040 KB
testcase_40 AC 1,447 ms
39,224 KB
testcase_41 AC 1,537 ms
40,044 KB
testcase_42 AC 1,163 ms
37,416 KB
testcase_43 AC 1,371 ms
38,520 KB
testcase_44 AC 1,377 ms
38,524 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