結果

問題 No.2053 12345...
ユーザー 👑 p-adicp-adic
提出日時 2023-05-24 07:27:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,652 KB
最終ジャッジ日時 2024-06-06 02:33:49
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 56 ms
15,460 KB
testcase_04 AC 115 ms
25,496 KB
testcase_05 AC 47 ms
13,836 KB
testcase_06 AC 102 ms
23,700 KB
testcase_07 AC 83 ms
19,928 KB
testcase_08 AC 78 ms
19,184 KB
testcase_09 AC 113 ms
25,564 KB
testcase_10 AC 139 ms
31,272 KB
testcase_11 AC 47 ms
13,652 KB
testcase_12 AC 40 ms
12,288 KB
testcase_13 AC 141 ms
30,512 KB
testcase_14 AC 69 ms
16,528 KB
testcase_15 AC 60 ms
15,840 KB
testcase_16 AC 60 ms
15,616 KB
testcase_17 AC 52 ms
14,112 KB
testcase_18 AC 154 ms
32,200 KB
testcase_19 AC 115 ms
26,116 KB
testcase_20 AC 38 ms
12,032 KB
testcase_21 AC 84 ms
19,976 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 43 ms
12,968 KB
testcase_24 AC 61 ms
16,208 KB
testcase_25 AC 137 ms
30,112 KB
testcase_26 AC 80 ms
19,848 KB
testcase_27 AC 60 ms
16,212 KB
testcase_28 AC 53 ms
14,896 KB
testcase_29 AC 102 ms
23,272 KB
testcase_30 AC 56 ms
15,480 KB
testcase_31 AC 96 ms
22,616 KB
testcase_32 AC 150 ms
32,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
N,A=I(),list(map(int,I().split()))+[0]
a=0
c=1
t=-1
for e in A:
	if e==t+1:c+=1
	else:a,c=a+c*(c-1)//2,1
	t=e
print(a)
0