結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー wolgnikwolgnik
提出日時 2021-03-12 22:26:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 109,084 KB
最終ジャッジ日時 2024-10-14 12:56:51
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 37 ms
51,456 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
51,712 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 37 ms
51,968 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 108 ms
102,400 KB
testcase_23 AC 58 ms
75,008 KB
testcase_24 AC 54 ms
72,704 KB
testcase_25 AC 110 ms
104,960 KB
testcase_26 AC 128 ms
105,192 KB
testcase_27 AC 113 ms
104,960 KB
testcase_28 AC 130 ms
105,724 KB
testcase_29 AC 71 ms
84,608 KB
testcase_30 AC 58 ms
76,416 KB
testcase_31 AC 128 ms
105,092 KB
testcase_32 AC 67 ms
83,328 KB
testcase_33 AC 44 ms
62,336 KB
testcase_34 AC 73 ms
86,016 KB
testcase_35 AC 117 ms
104,352 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
sa = [(a[i], i) for i in range(N)]
sa.sort(reverse = True)
_, i = sa.pop()
res = set()
while len(sa):
  _, j = sa.pop()
  if i > j: res.add(i - j)
  i = j
print(len(res))
0