結果

問題 No.182 新規性の虜
ユーザー ohanaohana
提出日時 2023-10-23 11:47:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 89,272 KB
最終ジャッジ日時 2024-09-22 10:02:55
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,008 KB
testcase_01 AC 38 ms
52,764 KB
testcase_02 AC 38 ms
52,972 KB
testcase_03 AC 36 ms
52,560 KB
testcase_04 AC 38 ms
52,576 KB
testcase_05 AC 38 ms
52,360 KB
testcase_06 AC 38 ms
52,400 KB
testcase_07 AC 36 ms
51,752 KB
testcase_08 AC 63 ms
82,476 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
52,892 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 37 ms
52,164 KB
testcase_24 AC 74 ms
89,272 KB
testcase_25 AC 60 ms
83,880 KB
testcase_26 AC 46 ms
67,356 KB
testcase_27 AC 37 ms
52,092 KB
evil01.txt AC 77 ms
90,136 KB
evil02.txt AC 78 ms
90,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
A = list(map(int, input().split()))

cnt = 0

for k, g in itertools.groupby(A):
    if len(list(g)) == 1:
        cnt += 1
print(cnt)
0