結果

問題 No.1053 ゲーミング棒
ユーザー H20H20
提出日時 2021-10-06 09:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 108,460 KB
最終ジャッジ日時 2024-07-23 02:41:42
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,856 KB
testcase_01 AC 41 ms
54,676 KB
testcase_02 AC 42 ms
53,944 KB
testcase_03 AC 43 ms
55,432 KB
testcase_04 AC 42 ms
55,300 KB
testcase_05 AC 42 ms
53,824 KB
testcase_06 AC 42 ms
55,064 KB
testcase_07 AC 43 ms
54,136 KB
testcase_08 AC 42 ms
55,364 KB
testcase_09 AC 43 ms
54,776 KB
testcase_10 AC 41 ms
54,584 KB
testcase_11 AC 42 ms
54,572 KB
testcase_12 AC 41 ms
55,292 KB
testcase_13 AC 41 ms
54,860 KB
testcase_14 AC 41 ms
54,064 KB
testcase_15 AC 42 ms
54,360 KB
testcase_16 AC 42 ms
55,044 KB
testcase_17 AC 42 ms
54,368 KB
testcase_18 AC 44 ms
53,796 KB
testcase_19 AC 46 ms
54,088 KB
testcase_20 AC 42 ms
54,788 KB
testcase_21 AC 43 ms
55,668 KB
testcase_22 AC 41 ms
54,496 KB
testcase_23 AC 126 ms
108,200 KB
testcase_24 AC 126 ms
108,172 KB
testcase_25 AC 131 ms
108,460 KB
testcase_26 AC 132 ms
108,076 KB
testcase_27 AC 41 ms
53,672 KB
testcase_28 AC 42 ms
54,876 KB
testcase_29 AC 41 ms
54,620 KB
testcase_30 AC 79 ms
97,968 KB
testcase_31 AC 77 ms
99,292 KB
testcase_32 AC 82 ms
98,372 KB
testcase_33 AC 77 ms
98,140 KB
testcase_34 AC 76 ms
98,196 KB
testcase_35 AC 80 ms
96,484 KB
testcase_36 AC 81 ms
99,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import itertools
N = int(input())
A = list(map(int,input().split()))
CA = collections.Counter(A)
va = len(CA)
GR = itertools.groupby(A+A)
L = []
for k,v in GR:
    L.append(len(list(v)))
AL = list(itertools.accumulate(L))+[0]
if AL[va-1]>=N:
    print(0)
else:
    for i in range(len(L)-va):
        if AL[i+va-1]-AL[i-1]>=N:
            print(1)
            exit()
    print(-1)
0