結果

問題 No.2053 12345...
ユーザー kept1994kept1994
提出日時 2022-11-04 01:59:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 104,108 KB
最終ジャッジ日時 2024-07-18 06:52:00
合計ジャッジ時間 3,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,676 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 38 ms
60,160 KB
testcase_03 AC 47 ms
69,808 KB
testcase_04 AC 66 ms
94,312 KB
testcase_05 AC 43 ms
65,876 KB
testcase_06 AC 67 ms
89,640 KB
testcase_07 AC 56 ms
79,944 KB
testcase_08 AC 54 ms
78,296 KB
testcase_09 AC 66 ms
93,960 KB
testcase_10 AC 75 ms
102,508 KB
testcase_11 AC 43 ms
65,360 KB
testcase_12 AC 46 ms
64,452 KB
testcase_13 AC 86 ms
104,108 KB
testcase_14 AC 52 ms
74,932 KB
testcase_15 AC 51 ms
73,396 KB
testcase_16 AC 50 ms
72,576 KB
testcase_17 AC 45 ms
68,048 KB
testcase_18 AC 94 ms
101,564 KB
testcase_19 AC 73 ms
95,460 KB
testcase_20 AC 45 ms
63,180 KB
testcase_21 AC 60 ms
82,228 KB
testcase_22 AC 39 ms
59,580 KB
testcase_23 AC 42 ms
64,368 KB
testcase_24 AC 44 ms
71,232 KB
testcase_25 AC 76 ms
101,916 KB
testcase_26 AC 57 ms
80,488 KB
testcase_27 AC 48 ms
71,876 KB
testcase_28 AC 44 ms
68,220 KB
testcase_29 AC 58 ms
87,040 KB
testcase_30 AC 42 ms
69,596 KB
testcase_31 AC 56 ms
86,920 KB
testcase_32 AC 82 ms
102,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
MOD = 998244353
def getArithmeticSequenceSum(a0: int, l: int, n: int):
    return (a0 + l) * n // 2

def main():
    N = int(input())
    A = list(map(int, input().split()))
    l = 1
    ans = 0
    for i in range(N - 1):
        d = A[i + 1] - A[i]
        if d == 1:
            l += 1
        else:
            ans += getArithmeticSequenceSum(1, l - 1, l - 1)
            l = 1
    ans += getArithmeticSequenceSum(1, l - 1, l - 1)
    print(ans)
    return

if __name__ == '__main__':
    main()
0