結果

問題 No.2053 12345...
ユーザー 👑 rin204rin204
提出日時 2022-08-23 14:56:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,084 KB
最終ジャッジ日時 2024-10-10 22:45:00
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 46 ms
51,712 KB
testcase_02 AC 61 ms
59,648 KB
testcase_03 AC 64 ms
72,576 KB
testcase_04 AC 93 ms
103,680 KB
testcase_05 AC 60 ms
69,248 KB
testcase_06 AC 90 ms
98,688 KB
testcase_07 AC 79 ms
86,912 KB
testcase_08 AC 75 ms
84,480 KB
testcase_09 AC 99 ms
103,680 KB
testcase_10 AC 110 ms
103,936 KB
testcase_11 AC 61 ms
68,224 KB
testcase_12 AC 56 ms
63,744 KB
testcase_13 AC 113 ms
103,808 KB
testcase_14 AC 69 ms
76,544 KB
testcase_15 AC 67 ms
74,880 KB
testcase_16 AC 68 ms
74,624 KB
testcase_17 AC 60 ms
68,992 KB
testcase_18 AC 128 ms
111,776 KB
testcase_19 AC 97 ms
104,064 KB
testcase_20 AC 55 ms
63,488 KB
testcase_21 AC 81 ms
86,784 KB
testcase_22 AC 49 ms
59,008 KB
testcase_23 AC 55 ms
65,152 KB
testcase_24 AC 66 ms
73,984 KB
testcase_25 AC 110 ms
103,808 KB
testcase_26 AC 77 ms
86,528 KB
testcase_27 AC 66 ms
73,856 KB
testcase_28 AC 62 ms
71,040 KB
testcase_29 AC 87 ms
94,592 KB
testcase_30 AC 63 ms
72,576 KB
testcase_31 AC 86 ms
93,696 KB
testcase_32 AC 124 ms
112,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A = [a - i for i, a in enumerate(A)]
ans = 0
bef = -1
row = 0
for a in A:
    if a == bef:
        row += 1
    else:
        row = 0
        bef = a
    ans += row
print(ans)
0