結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー sgswsgsw
提出日時 2021-08-15 00:04:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-10-06 03:34:19
合計ジャッジ時間 6,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 WA -
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 WA -
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 35 ms
52,224 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
52,480 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 36 ms
52,608 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 80 ms
101,376 KB
testcase_23 AC 47 ms
68,736 KB
testcase_24 AC 46 ms
67,072 KB
testcase_25 AC 82 ms
104,704 KB
testcase_26 AC 93 ms
101,924 KB
testcase_27 AC 82 ms
104,960 KB
testcase_28 AC 96 ms
101,760 KB
testcase_29 AC 54 ms
74,368 KB
testcase_30 AC 50 ms
70,016 KB
testcase_31 AC 97 ms
101,632 KB
testcase_32 AC 54 ms
73,344 KB
testcase_33 AC 42 ms
60,672 KB
testcase_34 AC 56 ms
76,928 KB
testcase_35 AC 84 ms
106,368 KB
testcase_36 AC 98 ms
96,384 KB
testcase_37 AC 52 ms
66,304 KB
testcase_38 AC 135 ms
103,580 KB
testcase_39 AC 44 ms
60,800 KB
testcase_40 AC 110 ms
103,040 KB
testcase_41 AC 67 ms
76,544 KB
testcase_42 AC 74 ms
80,256 KB
testcase_43 AC 46 ms
62,080 KB
testcase_44 AC 51 ms
66,176 KB
testcase_45 AC 136 ms
103,672 KB
testcase_46 AC 135 ms
102,980 KB
testcase_47 AC 137 ms
103,620 KB
testcase_48 AC 137 ms
103,440 KB
testcase_49 AC 135 ms
103,448 KB
testcase_50 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
    Python3(PyPy3) Template for Programming-Contest.

    author : sgsw

    generated : 2021/08/14   
    when : 23:49:30

'''

import sys


def input():
    return sys.stdin.readline().rstrip()


DXY = [(0, -1), (1, 0), (0, 1), (-1, 0)]  # LDRU
mod = 998244353
inf = 1 << 64


def main():
    n = int(input())
    a = list(map(int,input().split()))
    if sorted(a) == a:
        print(0)
    else:
        #case 1
        b = [not a[i] <= a[i + 1] for i in range(n - 1)]
        if sum(b) == 1:
            print(1)
        else:
            print(2)
    return 0


if __name__ == "__main__":
    main()
0