結果

問題 No.33 アメーバがたくさん
ユーザー ytftytft
提出日時 2022-11-04 06:45:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 351 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-07-18 09:28:22
合計ジャッジ時間 1,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 32 ms
51,712 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 RE -
testcase_09 AC 31 ms
52,352 KB
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

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 range(D)]
for i in X:
	pos[i%D].append(i//D)
for i in range(D):
	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