結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー KudeKude
提出日時 2021-03-12 21:59:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,580 KB
最終ジャッジ日時 2024-10-14 12:23:17
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 38 ms
52,640 KB
testcase_02 AC 38 ms
52,812 KB
testcase_03 AC 37 ms
52,156 KB
testcase_04 AC 38 ms
52,300 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,120 KB
testcase_07 AC 38 ms
52,624 KB
testcase_08 AC 37 ms
52,900 KB
testcase_09 AC 38 ms
51,932 KB
testcase_10 AC 37 ms
52,560 KB
testcase_11 AC 37 ms
52,056 KB
testcase_12 AC 38 ms
52,704 KB
testcase_13 AC 37 ms
52,396 KB
testcase_14 AC 37 ms
52,996 KB
testcase_15 AC 39 ms
53,244 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,056 KB
testcase_19 AC 37 ms
52,368 KB
testcase_20 AC 38 ms
52,988 KB
testcase_21 AC 38 ms
52,572 KB
testcase_22 AC 78 ms
97,680 KB
testcase_23 AC 50 ms
68,952 KB
testcase_24 AC 48 ms
67,268 KB
testcase_25 AC 80 ms
100,888 KB
testcase_26 AC 97 ms
101,664 KB
testcase_27 AC 88 ms
104,236 KB
testcase_28 AC 98 ms
101,904 KB
testcase_29 AC 57 ms
74,808 KB
testcase_30 AC 53 ms
70,848 KB
testcase_31 AC 98 ms
101,832 KB
testcase_32 AC 56 ms
74,032 KB
testcase_33 AC 44 ms
61,720 KB
testcase_34 AC 59 ms
77,848 KB
testcase_35 AC 88 ms
104,580 KB
testcase_36 AC 69 ms
92,308 KB
testcase_37 AC 45 ms
64,968 KB
testcase_38 AC 94 ms
101,816 KB
testcase_39 AC 41 ms
60,016 KB
testcase_40 AC 78 ms
97,316 KB
testcase_41 AC 54 ms
73,816 KB
testcase_42 AC 57 ms
77,796 KB
testcase_43 AC 41 ms
61,460 KB
testcase_44 AC 44 ms
63,628 KB
testcase_45 AC 93 ms
101,652 KB
testcase_46 AC 94 ms
102,144 KB
testcase_47 AC 95 ms
102,032 KB
testcase_48 AC 95 ms
101,940 KB
testcase_49 AC 95 ms
102,004 KB
testcase_50 AC 37 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
i = 1
while i < n and a[i-1] <= a[i]:
    i += 1
if i == n:
    print(0)
    exit()
mx = a[i-1]
i += 1
while i < n and a[i-1] <= a[i] and a[i] <= a[0]:
    i += 1
if i < n and a[i] < mx:
    print(2)
    exit()
i += 1
while i < n and a[i-1] <= a[i]:
    i += 1
if i >= n:
    print(1)
else:
    print(2)
0