結果

問題 No.1859 ><<<
ユーザー pluto77pluto77
提出日時 2022-03-04 09:57:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,451 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,776 KB
最終ジャッジ日時 2024-07-18 07:13:40
合計ジャッジ時間 49,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 1,445 ms
42,776 KB
testcase_05 AC 1,423 ms
42,648 KB
testcase_06 AC 1,434 ms
42,648 KB
testcase_07 AC 1,445 ms
42,648 KB
testcase_08 AC 1,434 ms
42,776 KB
testcase_09 AC 1,451 ms
42,648 KB
testcase_10 AC 89 ms
15,492 KB
testcase_11 AC 541 ms
27,972 KB
testcase_12 AC 435 ms
25,712 KB
testcase_13 AC 202 ms
19,924 KB
testcase_14 AC 616 ms
29,448 KB
testcase_15 AC 1,059 ms
36,184 KB
testcase_16 AC 1,260 ms
38,392 KB
testcase_17 AC 770 ms
31,752 KB
testcase_18 AC 1,198 ms
38,032 KB
testcase_19 AC 725 ms
30,988 KB
testcase_20 AC 1,084 ms
36,532 KB
testcase_21 AC 1,372 ms
40,036 KB
testcase_22 AC 1,272 ms
40,588 KB
testcase_23 AC 1,056 ms
35,844 KB
testcase_24 AC 1,344 ms
39,616 KB
testcase_25 AC 1,133 ms
38,256 KB
testcase_26 AC 1,101 ms
36,800 KB
testcase_27 AC 1,238 ms
38,384 KB
testcase_28 AC 1,197 ms
39,228 KB
testcase_29 AC 1,159 ms
37,352 KB
testcase_30 AC 1,057 ms
36,128 KB
testcase_31 AC 1,054 ms
35,996 KB
testcase_32 AC 1,381 ms
39,892 KB
testcase_33 AC 1,002 ms
36,184 KB
testcase_34 AC 1,190 ms
37,776 KB
testcase_35 AC 1,373 ms
40,172 KB
testcase_36 AC 1,407 ms
40,036 KB
testcase_37 AC 1,066 ms
36,476 KB
testcase_38 AC 1,316 ms
42,628 KB
testcase_39 AC 1,360 ms
40,176 KB
testcase_40 AC 1,321 ms
39,356 KB
testcase_41 AC 1,351 ms
40,172 KB
testcase_42 AC 1,035 ms
37,572 KB
testcase_43 AC 1,229 ms
38,524 KB
testcase_44 AC 1,241 ms
38,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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