結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-13 00:25:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 108,444 KB
最終ジャッジ日時 2024-10-14 14:47:52
合計ジャッジ時間 9,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,288 KB
testcase_01 AC 40 ms
52,064 KB
testcase_02 AC 39 ms
53,104 KB
testcase_03 AC 39 ms
52,892 KB
testcase_04 AC 39 ms
53,936 KB
testcase_05 AC 39 ms
52,424 KB
testcase_06 AC 40 ms
53,896 KB
testcase_07 AC 39 ms
52,636 KB
testcase_08 AC 39 ms
52,064 KB
testcase_09 AC 39 ms
52,700 KB
testcase_10 AC 39 ms
52,972 KB
testcase_11 AC 39 ms
52,200 KB
testcase_12 AC 38 ms
52,900 KB
testcase_13 WA -
testcase_14 AC 38 ms
51,992 KB
testcase_15 AC 39 ms
52,940 KB
testcase_16 AC 39 ms
52,504 KB
testcase_17 AC 39 ms
53,356 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 84 ms
100,412 KB
testcase_23 AC 54 ms
69,744 KB
testcase_24 AC 51 ms
69,060 KB
testcase_25 AC 87 ms
103,840 KB
testcase_26 AC 104 ms
102,404 KB
testcase_27 AC 98 ms
105,936 KB
testcase_28 AC 128 ms
104,960 KB
testcase_29 AC 69 ms
81,532 KB
testcase_30 AC 63 ms
77,888 KB
testcase_31 AC 132 ms
105,508 KB
testcase_32 AC 62 ms
77,668 KB
testcase_33 AC 49 ms
63,628 KB
testcase_34 AC 65 ms
80,556 KB
testcase_35 AC 118 ms
104,428 KB
testcase_36 AC 421 ms
101,660 KB
testcase_37 AC 109 ms
78,472 KB
testcase_38 AC 639 ms
108,168 KB
testcase_39 AC 55 ms
69,424 KB
testcase_40 AC 511 ms
104,128 KB
testcase_41 AC 202 ms
85,536 KB
testcase_42 AC 247 ms
89,108 KB
testcase_43 AC 70 ms
75,864 KB
testcase_44 AC 106 ms
77,828 KB
testcase_45 AC 646 ms
108,328 KB
testcase_46 AC 649 ms
107,780 KB
testcase_47 AC 651 ms
108,444 KB
testcase_48 AC 646 ms
107,788 KB
testcase_49 AC 649 ms
108,172 KB
testcase_50 AC 38 ms
52,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import bisect

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))
B = [A[i] for i in range(N)]
B.sort()

while len(A) > 0 and B[-1] == A[-1]:
    del A[-1]
    del B[-1]

if len(A) == 0:
    print (0)
    sys.exit()

C = [ (A[i],i) for i in range(len(A)) ]
C.sort()

for i in range(len(A)-1):

    if C[i+1][1] != (C[i][1]+1) % len(C):
        print (2)
        sys.exit()

print (1)
0