結果

問題 No.2053 12345...
ユーザー SyuKing_OrderSyuKing_Order
提出日時 2022-08-21 13:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 112,084 KB
最終ジャッジ日時 2024-10-10 05:59:44
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,632 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 44 ms
59,924 KB
testcase_03 AC 51 ms
73,948 KB
testcase_04 AC 80 ms
104,024 KB
testcase_05 AC 48 ms
70,024 KB
testcase_06 AC 75 ms
100,220 KB
testcase_07 AC 65 ms
87,428 KB
testcase_08 AC 64 ms
84,896 KB
testcase_09 AC 80 ms
103,916 KB
testcase_10 AC 92 ms
104,608 KB
testcase_11 AC 48 ms
68,600 KB
testcase_12 AC 44 ms
64,940 KB
testcase_13 AC 91 ms
103,960 KB
testcase_14 AC 56 ms
77,880 KB
testcase_15 AC 57 ms
75,636 KB
testcase_16 AC 55 ms
75,556 KB
testcase_17 AC 51 ms
70,976 KB
testcase_18 AC 107 ms
112,020 KB
testcase_19 AC 80 ms
104,472 KB
testcase_20 AC 45 ms
65,204 KB
testcase_21 AC 66 ms
87,620 KB
testcase_22 AC 41 ms
60,372 KB
testcase_23 AC 45 ms
66,368 KB
testcase_24 AC 57 ms
74,744 KB
testcase_25 AC 90 ms
104,340 KB
testcase_26 AC 64 ms
87,176 KB
testcase_27 AC 55 ms
75,268 KB
testcase_28 AC 51 ms
72,960 KB
testcase_29 AC 76 ms
95,060 KB
testcase_30 AC 52 ms
73,240 KB
testcase_31 AC 71 ms
94,988 KB
testcase_32 AC 105 ms
112,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = []
for i in range(n-1):
    b.append(a[i+1]-a[i])
count = 0
ans = 0
for i in range(n-1):
    if b[i] == 1:
        count += 1
    else:
        ans += (1+count)*count//2
        count = 0
ans += (1+count)*count//2
print(ans)
    
0