結果

問題 No.2053 12345...
ユーザー googol_S0googol_S0
提出日時 2022-08-21 12:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-10-10 05:52:54
合計ジャッジ時間 3,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 42 ms
59,392 KB
testcase_03 AC 50 ms
69,376 KB
testcase_04 AC 75 ms
92,672 KB
testcase_05 AC 47 ms
65,792 KB
testcase_06 AC 68 ms
89,216 KB
testcase_07 AC 60 ms
80,128 KB
testcase_08 AC 58 ms
78,336 KB
testcase_09 AC 73 ms
92,544 KB
testcase_10 AC 79 ms
103,296 KB
testcase_11 AC 50 ms
65,280 KB
testcase_12 AC 46 ms
62,336 KB
testcase_13 AC 83 ms
102,660 KB
testcase_14 AC 52 ms
72,448 KB
testcase_15 AC 51 ms
70,656 KB
testcase_16 AC 51 ms
71,168 KB
testcase_17 AC 47 ms
66,560 KB
testcase_18 AC 95 ms
101,888 KB
testcase_19 AC 72 ms
93,568 KB
testcase_20 AC 43 ms
62,464 KB
testcase_21 AC 60 ms
79,872 KB
testcase_22 AC 40 ms
58,880 KB
testcase_23 AC 45 ms
63,616 KB
testcase_24 AC 53 ms
71,296 KB
testcase_25 AC 81 ms
102,144 KB
testcase_26 AC 60 ms
79,488 KB
testcase_27 AC 51 ms
71,040 KB
testcase_28 AC 48 ms
68,096 KB
testcase_29 AC 67 ms
86,912 KB
testcase_30 AC 50 ms
69,760 KB
testcase_31 AC 66 ms
86,144 KB
testcase_32 AC 99 ms
101,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
P=0
Q=0
for i in range(1,N):
  if A[i-1]+1==A[i]:
    P+=1
  else:
    P=0
  Q+=P
print(Q)
0