結果

問題 No.33 アメーバがたくさん
ユーザー ytftytft
提出日時 2022-11-04 06:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 53,960 KB
最終ジャッジ日時 2024-07-18 09:29:13
合計ジャッジ時間 1,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,072 KB
testcase_01 AC 37 ms
52,292 KB
testcase_02 AC 36 ms
52,820 KB
testcase_03 AC 37 ms
51,696 KB
testcase_04 AC 37 ms
52,056 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 38 ms
52,464 KB
testcase_07 AC 38 ms
53,960 KB
testcase_08 AC 38 ms
52,896 KB
testcase_09 AC 39 ms
52,244 KB
testcase_10 AC 38 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,D,T=map(int,input().split())
X=list(map(int,input().split()))
ans=N
pos={}
for i in X:
	if not i%D in pos:
		pos[i%D]=[]
	pos[i%D].append(i//D)
for i in pos:
	pos[i]=sorted(pos[i])
	if len(pos[i])==0:
		continue
	ans+=2*T
	for j in range(len(pos[i])-1):
		ans+=min(2*T,pos[i][j+1]-pos[i][j]-1)
print(ans)
0